From a80d1974d6e82ed32e72ce5127ae783db6b29285 Mon Sep 17 00:00:00 2001 From: Matthias Alphart Date: Tue, 14 May 2024 20:51:56 +0200 Subject: [PATCH] Update required ruby version for documentation (#2166) --- docs/documenting.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/documenting.md b/docs/documenting.md index a7f0006d..b074fcee 100644 --- a/docs/documenting.md +++ b/docs/documenting.md @@ -28,7 +28,7 @@ It is also possible to set up a more traditional development environment. To test your changes locally, you need to install **Ruby** and its dependencies (gems): -- [Install Ruby](https://www.ruby-lang.org/en/documentation/installation/) if you don't have it already. Ruby version 2.5.0 or higher is required. Ruby version 3 is not supported yet. +- [Install Ruby](https://www.ruby-lang.org/en/documentation/installation/) if you don't have it already. Ruby version 3.1 is required. - Install `bundler`, a dependency manager for Ruby: `gem install bundler` (You might have to run this command as `sudo`). - Shortcut for Fedora: @@ -46,7 +46,7 @@ To test your changes locally, you need to install **Ruby** and its dependencies - Shortcut for Mac (if the bundled Ruby doesn't work): ```shell - brew install ruby@2.7 && export PATH="/usr/local/opt/ruby@2.7/bin:$PATH" + brew install ruby@3.1 && export PATH="/usr/local/opt/ruby@3.1/bin:$PATH" ```