From fd9f9706d2b686b63ee17476893e3d0aa7a2cc79 Mon Sep 17 00:00:00 2001 From: Lukas Bischof Date: Tue, 13 Jan 2026 11:29:10 +0100 Subject: [PATCH 1/2] Switch to mise --- ruby_on_rails/app_initialisation.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/ruby_on_rails/app_initialisation.md b/ruby_on_rails/app_initialisation.md index db4d304e..718a21e4 100644 --- a/ruby_on_rails/app_initialisation.md +++ b/ruby_on_rails/app_initialisation.md @@ -2,11 +2,9 @@ ## Default Rails setup -* Ensure that your asdf plugins are up to date with `asdf plugin update --all`. +* Ensure that your mise plugins are up to date with `mise plugin update`. -* Install the latest Ruby version with `asdf install ruby latest` (Check if it's [supported by Heroku](https://devcenter.heroku.com/articles/ruby-support#ruby-versions)). - -* Switch your global Ruby to the fresh one: `asdf global ruby latest`. +* Ensure you are using the latest Ruby version globally `mise use -g ruby@latest` (Check if it's [supported by Heroku](https://devcenter.heroku.com/articles/ruby-support#ruby-versions)). * Run `gem update --system` to update Ruby's default gems (e.g. `bundler`). From c4f5e1084d5272416305a1bc931c860468cda8a6 Mon Sep 17 00:00:00 2001 From: Lukas Bischof Date: Tue, 13 Jan 2026 13:50:43 +0100 Subject: [PATCH 2/2] Add note about supported Ruby version --- ruby_on_rails/app_initialisation.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ruby_on_rails/app_initialisation.md b/ruby_on_rails/app_initialisation.md index 718a21e4..e703674d 100644 --- a/ruby_on_rails/app_initialisation.md +++ b/ruby_on_rails/app_initialisation.md @@ -4,7 +4,8 @@ * Ensure that your mise plugins are up to date with `mise plugin update`. -* Ensure you are using the latest Ruby version globally `mise use -g ruby@latest` (Check if it's [supported by Heroku](https://devcenter.heroku.com/articles/ruby-support#ruby-versions)). +* Ensure you are using the latest Ruby version globally (`mise use -g ruby@latest`) and that it is + supported by Deploio. * Run `gem update --system` to update Ruby's default gems (e.g. `bundler`).