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

View file

@ -1 +1 @@
3.2.1 3.2.4

45
Gemfile
View file

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

View file

@ -79,16 +79,13 @@ GEM
public_suffix (>= 2.0.2, < 7.0) public_suffix (>= 2.0.2, < 7.0)
aes_key_wrap (1.1.0) aes_key_wrap (1.1.0)
ansi (1.5.0) ansi (1.5.0)
ast (2.4.2)
attr_required (1.0.2) attr_required (1.0.2)
babel-source (5.8.35) babel-source (5.8.35)
babel-transpiler (0.7.0) babel-transpiler (0.7.0)
babel-source (>= 4.0, < 6) babel-source (>= 4.0, < 6)
execjs (~> 2.0) execjs (~> 2.0)
backport (1.2.0)
base64 (0.2.0) base64 (0.2.0)
bcrypt (3.1.20) bcrypt (3.1.20)
benchmark (0.3.0)
better_errors (2.10.1) better_errors (2.10.1)
erubi (>= 1.0.0) erubi (>= 1.0.0)
rack (>= 0.9.0) rack (>= 0.9.0)
@ -130,11 +127,9 @@ GEM
railties (>= 4.1.0) railties (>= 4.1.0)
responders responders
warden (~> 1.2.3) warden (~> 1.2.3)
diff-lcs (1.5.1)
down (5.4.2) down (5.4.2)
addressable (~> 2.8) addressable (~> 2.8)
drb (2.2.1) drb (2.2.1)
e2mmap (0.1.0)
email_validator (2.2.4) email_validator (2.2.4)
activemodel activemodel
erubi (1.13.0) erubi (1.13.0)
@ -189,7 +184,6 @@ GEM
irb (1.14.0) irb (1.14.0)
rdoc (>= 4.0.0) rdoc (>= 4.0.0)
reline (>= 0.4.2) reline (>= 0.4.2)
jaro_winkler (1.6.0)
jbuilder (2.12.0) jbuilder (2.12.0)
actionview (>= 5.0.0) actionview (>= 5.0.0)
activesupport (>= 5.0.0) activesupport (>= 5.0.0)
@ -197,7 +191,6 @@ GEM
rails-dom-testing (>= 1, < 3) rails-dom-testing (>= 1, < 3)
railties (>= 4.2.0) railties (>= 4.2.0)
thor (>= 0.14, < 2.0) thor (>= 0.14, < 2.0)
json (2.7.2)
json-jwt (1.16.6) json-jwt (1.16.6)
activesupport (>= 4.2) activesupport (>= 4.2)
aes_key_wrap aes_key_wrap
@ -205,11 +198,7 @@ GEM
bindata bindata
faraday (~> 2.0) faraday (~> 2.0)
faraday-follow_redirects faraday-follow_redirects
kramdown (2.4.0) language_server-protocol (3.17.0.4)
rexml
kramdown-parser-gfm (1.1.0)
kramdown (~> 2.0)
language_server-protocol (3.17.0.3)
listen (3.9.0) listen (3.9.0)
rb-fsevent (~> 0.10, >= 0.10.3) rb-fsevent (~> 0.10, >= 0.10.3)
rb-inotify (~> 0.9, >= 0.9.10) rb-inotify (~> 0.9, >= 0.9.10)
@ -281,14 +270,11 @@ GEM
validate_url validate_url
webfinger (~> 2.0) webfinger (~> 2.0)
orm_adapter (0.5.0) orm_adapter (0.5.0)
parallel (1.25.1)
parser (3.3.4.0)
ast (~> 2.4.1)
racc
pg (1.5.6) pg (1.5.6)
pg_search (2.3.6) pg_search (2.3.6)
activerecord (>= 5.2) activerecord (>= 5.2)
activesupport (>= 5.2) activesupport (>= 5.2)
prism (1.3.0)
pry (0.14.2) pry (0.14.2)
coderay (~> 1.1) coderay (~> 1.1)
method_source (~> 1.0) method_source (~> 1.0)
@ -352,12 +338,12 @@ GEM
rake (>= 12.2) rake (>= 12.2)
thor (~> 1.0, >= 1.2.2) thor (~> 1.0, >= 1.2.2)
zeitwerk (~> 2.6) zeitwerk (~> 2.6)
rainbow (3.1.1)
rake (13.2.1) rake (13.2.1)
rb-fsevent (0.11.2) rb-fsevent (0.11.2)
rb-inotify (0.11.1) rb-inotify (0.11.1)
ffi (~> 1.0) ffi (~> 1.0)
rbs (2.8.4) rbs (3.8.1)
logger
rdoc (6.7.0) rdoc (6.7.0)
psych (>= 4.0.0) psych (>= 4.0.0)
regexp_parser (2.9.2) regexp_parser (2.9.2)
@ -366,26 +352,16 @@ GEM
responders (3.1.1) responders (3.1.1)
actionpack (>= 5.2) actionpack (>= 5.2)
railties (>= 5.2) railties (>= 5.2)
reverse_markdown (2.1.1)
nokogiri
rexml (3.3.1) rexml (3.3.1)
strscan strscan
rouge (4.3.0) rouge (4.3.0)
rubocop (1.65.0)
json (~> 2.3)
language_server-protocol (>= 3.17.0)
parallel (~> 1.10)
parser (>= 3.3.0.2)
rainbow (>= 2.2.2, < 4.0)
regexp_parser (>= 2.4, < 3.0)
rexml (>= 3.2.5, < 4.0)
rubocop-ast (>= 1.31.1, < 2.0)
ruby-progressbar (~> 1.7)
unicode-display_width (>= 2.4.0, < 3.0)
rubocop-ast (1.31.3)
parser (>= 3.3.1.0)
ruby-graphviz (1.2.5) ruby-graphviz (1.2.5)
rexml rexml
ruby-lsp (0.23.8)
language_server-protocol (~> 3.17.0)
prism (>= 1.2, < 2.0)
rbs (>= 3, < 4)
sorbet-runtime (>= 0.5.10782)
ruby-progressbar (1.13.0) ruby-progressbar (1.13.0)
ruby-vips (2.2.1) ruby-vips (2.2.1)
ffi (~> 1.12) ffi (~> 1.12)
@ -421,22 +397,7 @@ GEM
actionpack (>= 3.1) actionpack (>= 3.1)
railties (>= 3.1) railties (>= 3.1)
slim (>= 3.0, < 6.0, != 5.0.0) slim (>= 3.0, < 6.0, != 5.0.0)
solargraph (0.50.0) sorbet-runtime (0.5.11798)
backport (~> 1.2)
benchmark
bundler (~> 2.0)
diff-lcs (~> 1.4)
e2mmap
jaro_winkler (~> 1.5)
kramdown (~> 2.3)
kramdown-parser-gfm (~> 1.1)
parser (~> 3.0)
rbs (~> 2.0)
reverse_markdown (~> 2.0)
rubocop (~> 1.38)
thor (~> 1.0)
tilt (~> 2.0)
yard (~> 0.9, >= 0.9.24)
spring (2.1.1) spring (2.1.1)
spring-watcher-listen (2.0.1) spring-watcher-listen (2.0.1)
listen (>= 2.7, < 4.0) listen (>= 2.7, < 4.0)
@ -471,7 +432,6 @@ GEM
concurrent-ruby (~> 1.0) concurrent-ruby (~> 1.0)
uglifier (4.2.0) uglifier (4.2.0)
execjs (>= 0.3.0, < 3) execjs (>= 0.3.0, < 3)
unicode-display_width (2.5.0)
uri (0.13.0) uri (0.13.0)
validate_url (1.0.15) validate_url (1.0.15)
activemodel (>= 3.0.0) activemodel (>= 3.0.0)
@ -492,7 +452,6 @@ GEM
will_paginate (>= 3.0.3) will_paginate (>= 3.0.3)
xpath (3.2.0) xpath (3.2.0)
nokogiri (~> 1.8) nokogiri (~> 1.8)
yard (0.9.36)
zeitwerk (2.6.16) zeitwerk (2.6.16)
PLATFORMS PLATFORMS
@ -532,13 +491,13 @@ DEPENDENCIES
rails (~> 7.1) rails (~> 7.1)
rails-erd rails-erd
rails-healthcheck rails-healthcheck
ruby-lsp
rufo rufo
sass-rails (~> 5.0) sass-rails (~> 5.0)
sdoc sdoc
selenium-webdriver selenium-webdriver
shrine (~> 3.0) shrine (~> 3.0)
slim-rails slim-rails
solargraph
spring spring
spring-watcher-listen (~> 2.0.0) spring-watcher-listen (~> 2.0.0)
sprockets sprockets
@ -548,7 +507,7 @@ DEPENDENCIES
will_paginate-foundation will_paginate-foundation
RUBY VERSION RUBY VERSION
ruby 3.2.1p31 ruby 3.2.4p170
BUNDLED WITH BUNDLED WITH
2.5.14 2.5.14