Skip to content

Commit 22c9648

Browse files
authored
Use Ruby 3.2.0
1 parent 3bbe870 commit 22c9648

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

default.rb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#
66
# https://github.com/Code-With-Rails/rails-template
77
#
8-
# v1.0.0
8+
# v1.1.0
99
#
1010
# Intro: A simple, opinionated Rails template to set up your Rails project with a
1111
# Docker development environment.
@@ -28,7 +28,7 @@
2828
git commit: %( -m 'Initial commit' )
2929

3030
file 'Dockerfile', <<~CODE
31-
FROM ruby:3.1.2-bullseye
31+
FROM ruby:3.2.0-bullseye
3232
3333
# Install apt based dependencies required to run Rails as
3434
# well as RubyGems. As the Ruby image itself is based on a
@@ -212,9 +212,9 @@
212212
CODE
213213

214214
# Update Ruby version in the Gemfile
215-
gsub_file 'Gemfile', /^ruby .*$/, 'ruby \'3.1.2\''
215+
gsub_file 'Gemfile', /^ruby .*$/, 'ruby \'3.2.0\''
216216
git add: '.'
217-
git commit: '-a -m \'Use Ruby 3.1.2 in the Gemfile\''
217+
git commit: '-a -m \'Use Ruby 3.2.0 in the Gemfile\''
218218

219219
# Add Procfile.dev
220220
file 'Procfile.dev', <<~CODE

0 commit comments

Comments
 (0)