From 1165e757c402fa56e26ca1c1c1ce03d863fe654f Mon Sep 17 00:00:00 2001 From: David Larsson <2537886+DavidLarsson@users.noreply.github.com> Date: Sat, 26 Oct 2019 20:21:49 +0200 Subject: [PATCH] Update Ruby version to latest stable (in Gemfile) --- docs/development/development-environment-ubuntu.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/development/development-environment-ubuntu.md b/docs/development/development-environment-ubuntu.md index 45e8afc6c9..1bf47451d6 100644 --- a/docs/development/development-environment-ubuntu.md +++ b/docs/development/development-environment-ubuntu.md @@ -54,20 +54,20 @@ ruby-build is an addon to rbenv that installs ruby versions **Installing ruby-2.6** With both installed, we can now install the actual ruby version 2.6. You can check available ruby versions with `rbenv install --list`. -At the time of this writing, the latest stable version is `2.6.3`, which we also require. +At the time of this writing, the latest stable version is `2.6.5`, which we also require. We suggest you install the version we require in the [Gemfile](https://github.com/opf/openproject/blob/dev/Gemfile). Search for the `ruby '~> X.Y.Z'` line and install that version. ```bash # Install the required version as read from the Gemfile -[dev@ubuntu]# rbenv install 2.6.3 +[dev@ubuntu]# rbenv install 2.6.5 ``` This might take a while depending on whether ruby is built from source. After it is complete, you need to tell rbenv to globally activate this version ```bash -[dev@ubuntu]# rbenv global 2.6.3 +[dev@ubuntu]# rbenv global 2.6.5 ``` You also need to install [bundler](https://github.com/bundler/bundler/), the ruby gem bundler.