Skip to content

Commit 9d09f22

Browse files
committed
Update to Ruby 3.2
1 parent ec83822 commit 9d09f22

File tree

3 files changed

+5
-7
lines changed

3 files changed

+5
-7
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# syntax = docker/dockerfile:1
22

33
# Make sure RUBY_VERSION matches the Ruby version in .ruby-version and Gemfile
4-
ARG RUBY_VERSION=your-ruby-version
4+
ARG RUBY_VERSION=3.2.6
55
FROM registry.docker.com/library/ruby:$RUBY_VERSION-slim as base
66

77
# Rails app lives here

Gemfile

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
source "https://rubygems.org"
22

3-
ruby "3.0.7"
3+
ruby "3.2.6"
44
gem "rails", "~> 7.1.5", ">= 7.1.5.1"
55

66
gem 'pg', '~> 1.5', '>= 1.5.9'
@@ -69,6 +69,3 @@ end
6969
group :production do
7070
gem 'rails_12factor'
7171
end
72-
73-
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
74-
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]

Gemfile.lock

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,8 @@ GEM
170170
railties (>= 3.0.0)
171171
faker (3.4.2)
172172
i18n (>= 1.8.11, < 2)
173-
ffi (1.17.1)
173+
ffi (1.17.1-arm64-darwin)
174+
ffi (1.17.1-x86_64-linux-gnu)
174175
globalid (1.2.1)
175176
activesupport (>= 6.1)
176177
htmlentities (4.3.4)
@@ -393,7 +394,7 @@ DEPENDENCIES
393394
web-console
394395

395396
RUBY VERSION
396-
ruby 3.0.7p220
397+
ruby 3.2.6p234
397398

398399
BUNDLED WITH
399400
2.5.23

0 commit comments

Comments
 (0)