Ruby and Gem updates

This commit is contained in:
Christoph Haas 2025-02-03 01:08:20 +01:00
parent 2ec80b4bde
commit f74b3d95ec
3 changed files with 35 additions and 77 deletions

45
Gemfile
View file

@ -1,32 +1,31 @@
source 'https://rubygems.org'
#ruby '2.7.3'
ruby '3.2.1'
ruby '3.2.4'
# https://github.com/ruby/net-protocol/issues/10
gem 'net-http'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
#gem 'rails', '~> 6.0'
# gem 'rails', '~> 6.0'
gem 'rails', '~> 7.1'
gem 'bootsnap'
#gem 'webpacker'
# gem 'webpacker'
# File handling
gem "shrine", "~> 3.0"
gem 'shrine', '~> 3.0'
# To create variants (different sizes) of screenshot images
gem 'fastimage'
gem 'image_processing'
gem 'mini_magick'
gem 'fastimage'
# Use Puma as the app server
gem 'puma', '~> 3.0'
# Use SCSS for stylesheets
gem 'sass-rails', '~> 5.0'
# todo: ruby sass is decprecated
# TODO: ruby sass is decprecated
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
@ -55,21 +54,22 @@ gem 'rails-healthcheck'
group :development do
# Access an IRB console on exception pages or by using <%= console %> anywhere in the code.
#gem 'web-console'
# gem 'web-console'
gem 'listen', '~> 3.5'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'better_errors'
gem 'binding_of_caller'
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
gem "better_errors"
gem "binding_of_caller"
gem "rails-erd"
gem 'rails-erd'
# Chrome Rails debugging app broken with Rails 6.1 leads to "stack level too deep"
#gem 'meta_request'
# gem 'meta_request'
# VS Code code-intelligence
gem 'solargraph'
# gem 'solargraph'
gem 'ruby-lsp'
gem 'rufo'
end
@ -84,13 +84,12 @@ end
# PostgreSQL support
gem 'pg'
group :development, :test do
# Helps run tests automatically after changes
# TODO: not sure all these packages are required (http://buildingrails.com/a/rails_automated_testing_setup_for_beginners)
gem 'guard-minitest'
gem 'guard-rails'
gem 'minitest-rails'
gem 'guard-minitest'
gem 'minitest-reporters'
gem 'debug'
@ -127,27 +126,27 @@ gem 'pg_search'
gem 'slim-rails'
# Requires: apt-get install libbz2-dev
#gem 'bzip2-ruby', :git => 'https://github.com/chewi/bzip2-ruby.git'
# gem 'bzip2-ruby', :git => 'https://github.com/chewi/bzip2-ruby.git'
# a decade old and does not support Ruby 3
# Authentication
gem 'devise'
# Font Awesome icons
gem "font-awesome-rails"
gem 'font-awesome-rails'
# gem "recaptcha", require: "recaptcha/rails"
gem "sprockets"
gem 'sprockets'
#gem "activemodel-serializers-xml"
# gem "activemodel-serializers-xml"
# Authentication against Google, Facebook and others
gem 'omniauth'
#gem 'omniauth-amazon'
#gem 'omniauth-google-oauth2'
#gem 'omniauth-github'
#gem 'omniauth-openid'
# gem 'omniauth-amazon'
# gem 'omniauth-google-oauth2'
# gem 'omniauth-github'
# gem 'omniauth-openid'
# Single-sign-on with salsa.debian.net
gem 'omniauth_openid_connect'