Skip to content

Commit 49c20da

Browse files
authored
Merge pull request #2377 from olleolleolle/use-ruby347
chore: Use Ruby 3.4.7
2 parents 3384436 + 6842977 commit 49c20da

File tree

5 files changed

+11
-10
lines changed

5 files changed

+11
-10
lines changed

.ruby-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.4.5
1+
3.4.7

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ruby:3.4.5
1+
FROM ruby:3.4.7
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.4.5'
2+
ruby file: '.ruby-version'
33

44
gem 'rails', '~> 7.1.5.1' # LOCKED: It is Rails.
55
# The original asset pipeline for Rails [https://github.com/rails/sprockets-rails]

Gemfile.lock

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -591,6 +591,7 @@ GEM
591591
PLATFORMS
592592
aarch64-linux
593593
arm64-darwin-20
594+
arm64-darwin-25
594595
x86_64-darwin-24
595596
x86_64-linux
596597

@@ -681,7 +682,7 @@ DEPENDENCIES
681682
web-console (>= 4.1.0)
682683

683684
RUBY VERSION
684-
ruby 3.4.5p51
685+
ruby 3.4.7p58
685686

686687
BUNDLED WITH
687-
2.6.7
688+
2.7.2

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.4.5 using RVM or rbenv.
19+
You will need to install Ruby 3.4.7 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.4.5
24+
CPPFLAGS=-DUSE_FFI_CLOSURE_ALLOC rvm install 3.4.7
2525
```
26-
We need to set the CPPFLAGS env variable to be able to install Ruby 3.4.5 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.7 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.4.5
32-
rbenv global 3.4.5
31+
rbenv install 3.4.7
32+
rbenv global 3.4.7
3333
```
3434

3535
## Install and run PostgreSQL

0 commit comments

Comments
 (0)