-
-
Notifications
You must be signed in to change notification settings - Fork 199
chore: Use Ruby 3.4.7 #2377
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore: Use Ruby 3.4.7 #2377
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
3.4.5 | ||
3.4.7 |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,20 +16,20 @@ These are the original instructions for natively installing the app to your mach | |
|
||
## Set up a Ruby Environment | ||
|
||
You will need to install Ruby 3.4.5 using RVM or rbenv. | ||
You will need to install Ruby 3.4.7 using RVM or rbenv. | ||
|
||
### Option 1: Using [rvm](https://rvm.io/rvm/install) | ||
|
||
```bash | ||
CPPFLAGS=-DUSE_FFI_CLOSURE_ALLOC rvm install 3.4.5 | ||
CPPFLAGS=-DUSE_FFI_CLOSURE_ALLOC rvm install 3.4.7 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Shouldn't rvm, rbenv etc. pick up There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. #2379 now is about clarification. |
||
``` | ||
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) | ||
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) | ||
|
||
### Option 2: Using [rbenv](https://github.com/sstephenson/rbenv) and [ruby-build](https://github.com/sstephenson/ruby-build) | ||
|
||
```bash | ||
rbenv install 3.4.5 | ||
rbenv global 3.4.5 | ||
rbenv install 3.4.7 | ||
rbenv global 3.4.7 | ||
``` | ||
|
||
## Install and run PostgreSQL | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍🏼