Skip to content

Commit 4653e18

Browse files
committed
Ruby 4.0
1 parent 8c97326 commit 4653e18

6 files changed

Lines changed: 193 additions & 186 deletions

File tree

.ruby-version

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

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
# For a containerized dev environment, see Dev Containers: https://guides.rubyonrails.org/getting_started_with_devcontainer.html
99

1010
# Make sure RUBY_VERSION matches the Ruby version in .ruby-version
11-
ARG RUBY_VERSION=3.4.8
11+
ARG RUBY_VERSION=4.0.0
1212
FROM docker.io/library/ruby:$RUBY_VERSION-slim AS base
1313

1414
# Rails app lives here

Dockerfile-ssr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
# For a containerized dev environment, see Dev Containers: https://guides.rubyonrails.org/getting_started_with_devcontainer.html
99

1010
# Make sure RUBY_VERSION matches the Ruby version in .ruby-version
11-
ARG RUBY_VERSION=3.4.8
11+
ARG RUBY_VERSION=4.0.0
1212
FROM docker.io/library/ruby:$RUBY_VERSION-slim AS base
1313

1414
# Rails app lives here

Gemfile.lock

Lines changed: 18 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ GEM
8484
bcrypt_pbkdf (1.1.2)
8585
bigdecimal (4.0.1)
8686
bindex (0.8.1)
87-
bootsnap (1.19.0)
87+
bootsnap (1.20.0)
8888
msgpack (~> 1.2)
8989
brakeman (7.1.1)
9090
racc
@@ -111,7 +111,7 @@ GEM
111111
connection_pool (3.0.2)
112112
crass (1.0.6)
113113
date (3.5.1)
114-
debug (1.11.0)
114+
debug (1.11.1)
115115
irb (~> 1.10)
116116
reline (>= 0.3.8)
117117
diff-lcs (1.6.2)
@@ -133,7 +133,7 @@ GEM
133133
raabro (~> 1.4)
134134
globalid (1.3.0)
135135
activesupport (>= 6.1)
136-
i18n (1.14.7)
136+
i18n (1.14.8)
137137
concurrent-ruby (~> 1.0)
138138
inertia_rails (3.15.0)
139139
railties (>= 6)
@@ -145,7 +145,7 @@ GEM
145145
jbuilder (2.14.1)
146146
actionview (>= 7.0.0)
147147
activesupport (>= 7.0.0)
148-
js-routes (2.3.5)
148+
js-routes (2.3.6)
149149
railties (>= 5)
150150
sorbet-runtime
151151
json (2.18.0)
@@ -181,7 +181,9 @@ GEM
181181
marcel (1.1.0)
182182
matrix (0.4.3)
183183
mini_mime (1.1.5)
184-
minitest (5.27.0)
184+
mini_portile2 (2.8.9)
185+
minitest (6.0.0)
186+
prism (~> 1.5)
185187
msgpack (1.8.0)
186188
mutex_m (0.3.0)
187189
net-imap (0.6.2)
@@ -199,6 +201,9 @@ GEM
199201
net-protocol
200202
net-ssh (7.3.0)
201203
nio4r (2.7.5)
204+
nokogiri (1.18.10)
205+
mini_portile2 (~> 2.8.2)
206+
racc (~> 1.4)
202207
nokogiri (1.18.10-aarch64-linux-gnu)
203208
racc (~> 1.4)
204209
nokogiri (1.18.10-aarch64-linux-musl)
@@ -221,7 +226,7 @@ GEM
221226
pp (0.6.3)
222227
prettyprint
223228
prettyprint (0.2.0)
224-
prism (1.6.0)
229+
prism (1.7.0)
225230
propshaft (1.3.1)
226231
actionpack (>= 7.0.0)
227232
activesupport (>= 7.0.0)
@@ -276,7 +281,7 @@ GEM
276281
zeitwerk (~> 2.6)
277282
rainbow (3.1.1)
278283
rake (13.3.1)
279-
rdoc (6.17.0)
284+
rdoc (7.0.3)
280285
erb
281286
psych (>= 4.0.0)
282287
tsort
@@ -301,7 +306,7 @@ GEM
301306
rspec-mocks (~> 3.13)
302307
rspec-support (~> 3.13)
303308
rspec-support (3.13.6)
304-
rubocop (1.82.0)
309+
rubocop (1.82.1)
305310
json (~> 2.3)
306311
language_server-protocol (~> 3.17.0.2)
307312
lint_roller (~> 1.1.0)
@@ -355,7 +360,9 @@ GEM
355360
fugit (~> 1.11)
356361
railties (>= 7.1)
357362
thor (>= 1.3.1)
358-
sorbet-runtime (0.6.12854)
363+
sorbet-runtime (0.6.12872)
364+
sqlite3 (2.8.1)
365+
mini_portile2 (~> 2.8.0)
359366
sqlite3 (2.8.1-aarch64-linux-gnu)
360367
sqlite3 (2.8.1-aarch64-linux-musl)
361368
sqlite3 (2.8.1-arm-linux-gnu)
@@ -382,7 +389,7 @@ GEM
382389
concurrent-ruby (~> 1.0)
383390
unicode-display_width (3.2.0)
384391
unicode-emoji (~> 4.1)
385-
unicode-emoji (4.1.0)
392+
unicode-emoji (4.2.0)
386393
uri (1.1.1)
387394
useragent (0.16.11)
388395
vite_rails (3.0.19)
@@ -450,4 +457,4 @@ DEPENDENCIES
450457
web-console
451458

452459
BUNDLED WITH
453-
2.6.7
460+
4.0.3

config/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ builder:
107107
#
108108
# # Pass arguments and secrets to the Docker build process
109109
# args:
110-
# RUBY_VERSION: ruby-3.4.8
110+
# RUBY_VERSION: ruby-4.0.0
111111
# secrets:
112112
# - GITHUB_TOKEN
113113
# - RAILS_MASTER_KEY

0 commit comments

Comments
 (0)