Skip to content

Commit

Permalink
Upgrade to ruby 3.3.1
Browse files Browse the repository at this point in the history
Signed-off-by: Miquel Sabaté Solà <mikisabate@gmail.com>
  • Loading branch information
mssola committed May 21, 2024
1 parent 9078cf1 commit a774c7a
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
ruby-3.2.3
ruby-3.3.1
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# syntax = docker/dockerfile:1

# Make sure RUBY_VERSION matches the Ruby version in .ruby-version and Gemfile
ARG RUBY_VERSION=3.2.3
ARG RUBY_VERSION=3.3.1
FROM registry.docker.com/library/ruby:$RUBY_VERSION-slim as base

# Rails app lives here
Expand Down
5 changes: 4 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

source 'https://rubygems.org'

ruby '3.2.3'
ruby '3.3.1'

# Rails itself :)
gem 'rails', '~> 7.1.3'
Expand Down Expand Up @@ -35,6 +35,9 @@ gem 'bootsnap', require: false
# Use Active Storage variants.
gem 'image_processing', '~> 1.2'

# No longer in the standard library from Ruby 3.4 onwards.
gem 'csv'

group :development, :test do
gem 'debug', platforms: %i[mri windows]

Expand Down
6 changes: 4 additions & 2 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@ GEM
concurrent-ruby (1.2.3)
connection_pool (2.4.1)
crass (1.0.6)
csv (3.3.0)
date (3.3.4)
debug (1.9.2)
irb (~> 1.10)
Expand Down Expand Up @@ -175,7 +176,7 @@ GEM
public_suffix (5.0.5)
puma (6.4.2)
nio4r (~> 2.0)
racc (1.7.3)
racc (1.8.0)
rack (3.0.11)
rack-session (2.0.0)
rack (>= 3.0.0)
Expand Down Expand Up @@ -313,6 +314,7 @@ DEPENDENCIES
brakeman
bundle-audit
capybara
csv
debug
image_processing (~> 1.2)
importmap-rails
Expand All @@ -331,7 +333,7 @@ DEPENDENCIES
web-console

RUBY VERSION
ruby 3.2.3p157
ruby 3.3.1p55

BUNDLED WITH
2.5.9

0 comments on commit a774c7a

Please sign in to comment.