diff options
| author | Miquel Sabaté Solà <mikisabate@gmail.com> | 2024-11-08 09:46:07 +0100 |
|---|---|---|
| committer | Miquel Sabaté Solà <mikisabate@gmail.com> | 2024-11-08 09:46:07 +0100 |
| commit | 7260bdfbee719a93ffe6752ff08c3a77bc198b2d (patch) | |
| tree | 169cfbad72b7c6aee694c005a1fdf32f29cf2ae1 /Gemfile | |
| parent | 2271d4f0e32090a6cbf3552596a7ef167a60ff21 (diff) | |
| download | operum-7260bdfbee719a93ffe6752ff08c3a77bc198b2d.tar.gz operum-7260bdfbee719a93ffe6752ff08c3a77bc198b2d.zip | |
Upgrade several long-standing gems
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à <mikisabate@gmail.com>
Diffstat (limited to 'Gemfile')
| -rw-r--r-- | Gemfile | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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' @@ -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' |
