Skip to content

Commit 9413c2e

Browse files
committed
chore: Upgrade ruby to 3.4.4
1 parent 59bb832 commit 9413c2e

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

.ruby-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.2.2
1+
3.4.4

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ruby:3.2.2
1+
FROM ruby:3.4.4
22

33
# Default node version on apt is old. This makes sure a recent version is installed
44
# This step also runs apt-get update

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
source 'https://rubygems.org'
2-
ruby '3.2.2'
2+
ruby '3.4.4'
33

44
gem 'rails', '7.0.8.1'
55
# The original asset pipeline for Rails [https://github.com/rails/sprockets-rails]

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -580,7 +580,7 @@ DEPENDENCIES
580580
web-console (>= 4.1.0)
581581

582582
RUBY VERSION
583-
ruby 3.2.2p137
583+
ruby 3.4.4
584584

585585
BUNDLED WITH
586586
2.4.17

native-installation-instructions.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,20 +16,20 @@ These are the original instructions for natively installing the app to your mach
1616

1717
## Set up a Ruby Environment
1818

19-
You will need to install Ruby 3.2.2 using RVM or rbenv.
19+
You will need to install Ruby 3.4.4 using RVM or rbenv.
2020

2121
### Option 1: Using [rvm](https://rvm.io/rvm/install)
2222

2323
```bash
24-
CPPFLAGS=-DUSE_FFI_CLOSURE_ALLOC rvm install 3.2.2
24+
CPPFLAGS=-DUSE_FFI_CLOSURE_ALLOC rvm install 3.4.4
2525
```
26-
We need to set the CPPFLAGS env variable to be able to install Ruby 3.2.2 on M1 Mac machines. See more: [https://github.com/ffi/ffi/issues/869#issuecomment-1233000037](https://github.com/ffi/ffi/issues/869#issuecomment-1233000037)
26+
We need to set the CPPFLAGS env variable to be able to install Ruby 3.4.4 on M1 Mac machines. See more: [https://github.com/ffi/ffi/issues/869#issuecomment-1233000037](https://github.com/ffi/ffi/issues/869#issuecomment-1233000037)
2727

2828
### Option 2: Using [rbenv](https://github.com/sstephenson/rbenv) and [ruby-build](https://github.com/sstephenson/ruby-build)
2929

3030
```bash
31-
rbenv install 3.2.2
32-
rbenv global 3.2.2
31+
rbenv install 3.4.4
32+
rbenv global 3.4.4
3333
```
3434

3535
## Install and run PostgreSQL

0 commit comments

Comments
 (0)