Skip to content

Commit efbd40e

Browse files
authored
Merge pull request codebar#2352 from olleolleolle/use-ruby345
Use Ruby 3.4.5
2 parents 0cf0f41 + 0fa3fa9 commit efbd40e

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

.ruby-version

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

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ruby:3.4.4
1+
FROM ruby:3.4.5
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.4'
2+
ruby '3.4.5'
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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -666,7 +666,7 @@ DEPENDENCIES
666666
web-console (>= 4.1.0)
667667

668668
RUBY VERSION
669-
ruby 3.4.4
669+
ruby 3.4.5p51
670670

671671
BUNDLED WITH
672672
2.6.7

native-installation-instructions.md

Lines changed: 6 additions & 6 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.4 using RVM or rbenv.
19+
You will need to install Ruby 3.4.5 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.4
24+
CPPFLAGS=-DUSE_FFI_CLOSURE_ALLOC rvm install 3.4.5
2525
```
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)
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)
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.4
32-
rbenv global 3.4.4
31+
rbenv install 3.4.5
32+
rbenv global 3.4.5
3333
```
3434

3535
## Install and run PostgreSQL
@@ -98,4 +98,4 @@ bundle exec rake
9898
rails c
9999
user = Member.find_by(email: 'test@example.com')
100100
user.add_role :admin
101-
```
101+
```

0 commit comments

Comments
 (0)