With both installed, we can now install the actual ruby version 2.7. You can check available ruby versions with `rbenv install --list`.
At the time of this writing, the latest stable version is `2.7.4`, which we also require.
At the time of this writing, the latest stable version is `2.7.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
rbenv install 2.7.4
rbenv install 2.7.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
rbenv global 2.7.4
rbenv global 2.7.5
```
You also need to install [bundler](https://github.com/bundler/bundler/), the ruby gem bundler.
@ -116,7 +116,7 @@ You should now have an active ruby and node installation. Verify that it works w
With both installed, we can now install the actual ruby version 2.7. You can check available ruby versions with `rbenv install --list`.
At the time of this writing, the latest stable version is `2.7.4`, which we also require.
At the time of this writing, the latest stable version is `2.7.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
rbenv install 2.7.4
rbenv install 2.7.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
rbenv global 2.7.4
rbenv global 2.7.5
rbenv rehash
```
@ -155,7 +155,7 @@ You should now have an active ruby and node installation. Verify that it works w