diff --git a/.ruby-version b/.ruby-version index 2aa513199..7921bd0c8 100644 --- a/.ruby-version +++ b/.ruby-version @@ -1 +1 @@ -3.4.7 +3.4.8 diff --git a/Dockerfile b/Dockerfile index 03599b765..2a3b45b77 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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 diff --git a/Gemfile.lock b/Gemfile.lock index 3106bde0f..7341f9358 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -728,7 +728,7 @@ DEPENDENCIES webmock RUBY VERSION - ruby 3.4.7p58 + ruby 3.4.8p72 BUNDLED WITH 2.7.2 diff --git a/native-installation-instructions.md b/native-installation-instructions.md index 2112065b1..278896c87 100644 --- a/native-installation-instructions.md +++ b/native-installation-instructions.md @@ -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