With both installed, we can now install the actual ruby version 2.5. You can check available ruby versions with `rbenv install --list`.
At the time of this writing, the latest stable version is `2.5.0`, which we also require.
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.1`, 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.5.0
[dev@ubuntu]# rbenv install 2.6.1
```
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.5.0
[dev@ubuntu]# rbenv global 2.6.1
```
You also need to install [bundler](https://github.com/bundler/bundler/), the ruby gem bundler.
@ -108,13 +108,13 @@ 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.5. You can check available ruby versions with `rbenv install --list`.
At the time of this writing, the latest stable version is `2.5.0`, which we also require.
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.1`, 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.5.1
[dev@ubuntu]# rbenv install 2.6.1
```
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.5.1
[dev@ubuntu]# rbenv global 2.6.1
```
You also need to install [bundler](https://github.com/bundler/bundler/), the ruby gem bundler.
@ -144,13 +144,13 @@ You should now have an active ruby and node installation. Verify that it works w