Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.4.7
3.4.8
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ruby:3.4.7
FROM ruby:3.4.8

# Default node version on apt is old. This makes sure a recent version is installed
# This step also runs apt-get update
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -728,7 +728,7 @@ DEPENDENCIES
webmock

RUBY VERSION
ruby 3.4.7p58
ruby 3.4.8p72

BUNDLED WITH
2.7.2
10 changes: 5 additions & 5 deletions native-installation-instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.7 using RVM or rbenv.
You will need to install Ruby using RVM or rbenv.

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

```bash
CPPFLAGS=-DUSE_FFI_CLOSURE_ALLOC rvm install 3.4.7
CPPFLAGS=-DUSE_FFI_CLOSURE_ALLOC rvm install 3.4.8
```
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)
We need to set the CPPFLAGS env variable to be able to install Ruby 3.4.8 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.7
rbenv global 3.4.7
rbenv install 3.4.8
rbenv global 3.4.8
```

## Install and run PostgreSQL
Expand Down