From 7260bdfbee719a93ffe6752ff08c3a77bc198b2d Mon Sep 17 00:00:00 2001 From: Miquel Sabaté Solà Date: Fri, 8 Nov 2024 09:46:07 +0100 Subject: Upgrade several long-standing gems MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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à --- Gemfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'Gemfile') diff --git a/Gemfile b/Gemfile index 1bfdb85..702a268 100644 --- a/Gemfile +++ b/Gemfile @@ -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' -- cgit v1.2.3