Skip to content

Commit e637484

Browse files
committed
Update Ruby to 3.4
1 parent dcb83ff commit e637484

File tree

5 files changed

+16
-17
lines changed

5 files changed

+16
-17
lines changed

.devcontainer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# Make sure RUBY_VERSION matches the Ruby version in .ruby-version
2-
ARG RUBY_VERSION=3.3.6
2+
ARG RUBY_VERSION=3.4.1
33
FROM ghcr.io/rails/devcontainer/images/ruby:$RUBY_VERSION

.rubocop.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ inherit_from:
1717
- .rubocop_todo.yml
1818

1919
AllCops:
20-
TargetRubyVersion: 3.3
21-
TargetRailsVersion: 7.1
20+
TargetRubyVersion: 3.4
21+
TargetRailsVersion: 8.0
2222
UseCache: True
2323
NewCops: enable
2424
Exclude:

.ruby-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
ruby-3.3.6
1+
ruby-3.4.1

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# docker run -d -p 80:80 -p 443:443 --name my-app -e RAILS_MASTER_KEY=<value from config/master.key> my-app
66

77
# Make sure RUBY_VERSION matches the Ruby version in .ruby-version
8-
ARG RUBY_VERSION=3.3.6
8+
ARG RUBY_VERSION=3.4.1
99
FROM docker.io/library/ruby:$RUBY_VERSION-slim AS base
1010

1111
# Rails app lives here

Gemfile.lock

Lines changed: 11 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ GEM
133133
bigdecimal
134134
rexml
135135
crass (1.0.6)
136-
csv (3.3.0)
136+
csv (3.3.2)
137137
dachsfisch (1.0.2)
138138
nokogiri (>= 1.14.1, < 2.0.0)
139139
date (3.4.1)
@@ -149,7 +149,7 @@ GEM
149149
diff-lcs (1.5.1)
150150
docile (1.4.1)
151151
drb (2.2.1)
152-
erubi (1.13.0)
152+
erubi (1.13.1)
153153
et-orbi (1.2.11)
154154
tzinfo
155155
event_stream_parser (1.0.0)
@@ -163,8 +163,8 @@ GEM
163163
faraday-net_http (>= 2.0, < 3.5)
164164
json
165165
logger
166-
faraday-multipart (1.0.4)
167-
multipart-post (~> 2)
166+
faraday-multipart (1.1.0)
167+
multipart-post (~> 2.0)
168168
faraday-net_http (3.4.0)
169169
net-http (>= 0.5.0)
170170
ffi (1.17.0)
@@ -199,7 +199,7 @@ GEM
199199
mini_magick (>= 4.9.5, < 5)
200200
ruby-vips (>= 2.0.17, < 3)
201201
io-console (0.8.0)
202-
irb (1.14.2)
202+
irb (1.14.3)
203203
rdoc (>= 4.0.0)
204204
reline (>= 0.4.2)
205205
iso-639 (0.3.8)
@@ -280,7 +280,6 @@ GEM
280280
net-protocol (0.2.2)
281281
timeout
282282
net-smtp (0.5.0)
283-
net-protocol
284283
nio4r (2.7.4)
285284
nokogiri (1.18.0)
286285
mini_portile2 (~> 2.8.2)
@@ -335,7 +334,7 @@ GEM
335334
rack
336335
rack-session (2.0.0)
337336
rack (>= 3.0.0)
338-
rack-test (2.1.0)
337+
rack-test (2.2.0)
339338
rack (>= 1.3)
340339
rackup (2.2.1)
341340
rack (>= 3)
@@ -392,15 +391,15 @@ GEM
392391
rb-inotify (0.11.1)
393392
ffi (~> 1.0)
394393
rbtree (0.4.6)
395-
rdoc (6.9.1)
394+
rdoc (6.10.0)
396395
psych (>= 4.0.0)
397396
regexp_parser (2.10.0)
398397
reline (0.6.0)
399398
io-console (~> 0.5)
400399
responders (3.1.1)
401400
actionpack (>= 5.2)
402401
railties (>= 5.2)
403-
rexml (3.3.9)
402+
rexml (3.4.0)
404403
rouge (4.5.1)
405404
rqrcode (2.2.0)
406405
chunky_png (~> 1.0)
@@ -532,7 +531,7 @@ GEM
532531
fugit (~> 1.11.0)
533532
railties (>= 7.1)
534533
thor (~> 1.3.1)
535-
sorbet-runtime (0.5.11699)
534+
sorbet-runtime (0.5.11708)
536535
sorted_set (1.0.3)
537536
rbtree
538537
set (~> 1.0)
@@ -551,7 +550,7 @@ GEM
551550
terser (1.2.4)
552551
execjs (>= 0.3.0, < 3)
553552
thor (1.3.2)
554-
tilt (2.4.0)
553+
tilt (2.5.0)
555554
timeout (0.4.3)
556555
turbo-rails (2.0.11)
557556
actionpack (>= 6.0.0)
@@ -673,4 +672,4 @@ DEPENDENCIES
673672
whenever
674673

675674
BUNDLED WITH
676-
2.5.23
675+
2.6.2

0 commit comments

Comments
 (0)