Skip to content

Commit

Permalink
Upgrade several long-standing gems
Browse files Browse the repository at this point in the history
Some gems like sqlite3 where pinned to a specific version but this
version was needlessly old. Same for other gems.

Signed-off-by: Miquel Sabaté Solà <[email protected]>
  • Loading branch information
mssola committed Nov 8, 2024
1 parent 2271d4f commit 7260bdf
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 22 deletions.
8 changes: 4 additions & 4 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ gem 'rails-i18n', '~> 7.0.0'
gem 'sprockets-rails'

# sqlite3 should be fine for this project, and we keep things simpler.
gem 'sqlite3', '~> 1.4'
gem 'sqlite3'

# Web server.
gem 'puma', '>= 5.0'
gem 'puma'

# Use JavaScript with ESM import maps.
gem 'importmap-rails'
Expand All @@ -27,13 +27,13 @@ gem 'turbo-rails'
gem 'stimulus-rails'

# Use Active Model has_secure_password.
gem 'bcrypt', '~> 3.1.7'
gem 'bcrypt'

# Reduces boot times through caching; required in config/boot.rb
gem 'bootsnap', require: false

# Use Active Storage variants.
gem 'image_processing', '~> 1.2'
gem 'image_processing'

# No longer in the standard library from Ruby 3.4 onwards.
gem 'csv'
Expand Down
36 changes: 18 additions & 18 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ GEM
awesome_print (1.9.2)
base64 (0.2.0)
bcrypt (3.1.20)
benchmark (0.3.0)
benchmark (0.4.0)
bigdecimal (3.1.8)
bindex (0.8.1)
bootsnap (1.18.4)
Expand Down Expand Up @@ -138,7 +138,7 @@ GEM
irb (1.14.1)
rdoc (>= 4.0.0)
reline (>= 0.4.2)
json (2.7.6)
json (2.8.1)
language_server-protocol (3.17.0.3)
logger (1.6.1)
loofah (2.23.1)
Expand Down Expand Up @@ -176,10 +176,10 @@ GEM
nokogiri (1.16.7-x86_64-linux)
racc (~> 1.4)
parallel (1.26.3)
parser (3.3.5.1)
parser (3.3.6.0)
ast (~> 2.4.1)
racc
psych (5.1.2)
psych (5.2.0)
stringio
public_suffix (6.0.1)
puma (6.4.3)
Expand Down Expand Up @@ -229,7 +229,7 @@ GEM
rdoc (6.7.0)
psych (>= 4.0.0)
regexp_parser (2.9.2)
reline (0.5.10)
reline (0.5.11)
io-console (~> 0.5)
rexml (3.3.9)
rubocop (1.68.0)
Expand All @@ -242,7 +242,7 @@ GEM
rubocop-ast (>= 1.32.2, < 2.0)
ruby-progressbar (~> 1.7)
unicode-display_width (>= 2.4.0, < 3.0)
rubocop-ast (1.34.0)
rubocop-ast (1.34.1)
parser (>= 3.3.1.0)
rubocop-minitest (0.36.0)
rubocop (>= 1.61, < 2.0)
Expand Down Expand Up @@ -274,17 +274,17 @@ GEM
actionpack (>= 6.1)
activesupport (>= 6.1)
sprockets (>= 3.0.0)
sqlite3 (1.7.3-aarch64-linux)
sqlite3 (1.7.3-arm-linux)
sqlite3 (1.7.3-arm64-darwin)
sqlite3 (1.7.3-x86-linux)
sqlite3 (1.7.3-x86_64-darwin)
sqlite3 (1.7.3-x86_64-linux)
sqlite3 (2.2.0-aarch64-linux-gnu)
sqlite3 (2.2.0-arm-linux-gnu)
sqlite3 (2.2.0-arm64-darwin)
sqlite3 (2.2.0-x86-linux-gnu)
sqlite3 (2.2.0-x86_64-darwin)
sqlite3 (2.2.0-x86_64-linux-gnu)
stimulus-rails (1.3.4)
railties (>= 6.0.0)
stringio (3.1.1)
stringio (3.1.2)
thor (1.3.2)
timeout (0.4.1)
timeout (0.4.2)
turbo-rails (2.0.11)
actionpack (>= 6.0.0)
railties (>= 6.0.0)
Expand Down Expand Up @@ -315,17 +315,17 @@ PLATFORMS

DEPENDENCIES
awesome_print
bcrypt (~> 3.1.7)
bcrypt
bootsnap
brakeman
bundle-audit
capybara
csv
debug
image_processing (~> 1.2)
image_processing
importmap-rails
net-pop!
puma (>= 5.0)
puma
rails (~> 7.2.0)
rails-i18n (~> 7.0.0)
rubocop
Expand All @@ -334,7 +334,7 @@ DEPENDENCIES
rubocop-rails
selenium-webdriver
sprockets-rails
sqlite3 (~> 1.4)
sqlite3
stimulus-rails
turbo-rails
web-console
Expand Down

0 comments on commit 7260bdf

Please sign in to comment.