Commit b2e5d40a authored by Rémy Coutable's avatar Rémy Coutable

Merge branch 'patch-20' into 'master'

Update installation.md - Updated the Ruby section.

See merge request !11251
parents a7a7fce8 26f5713f
...@@ -109,8 +109,10 @@ Then select 'Internet Site' and press enter to confirm the hostname. ...@@ -109,8 +109,10 @@ Then select 'Internet Site' and press enter to confirm the hostname.
## 2. Ruby ## 2. Ruby
**Note:** The current supported Ruby version is 2.3.x. GitLab 9.0 dropped support The Ruby interpreter is required to run GitLab.
for Ruby 2.1.x.
**Note:** The current supported Ruby (MRI) version is 2.3.x. GitLab 9.0 dropped
support for Ruby 2.1.x.
The use of Ruby version managers such as [RVM], [rbenv] or [chruby] with GitLab The use of Ruby version managers such as [RVM], [rbenv] or [chruby] with GitLab
in production, frequently leads to hard to diagnose problems. For example, in production, frequently leads to hard to diagnose problems. For example,
...@@ -118,6 +120,9 @@ GitLab Shell is called from OpenSSH, and having a version manager can prevent ...@@ -118,6 +120,9 @@ GitLab Shell is called from OpenSSH, and having a version manager can prevent
pushing and pulling over SSH. Version managers are not supported and we strongly pushing and pulling over SSH. Version managers are not supported and we strongly
advise everyone to follow the instructions below to use a system Ruby. advise everyone to follow the instructions below to use a system Ruby.
Linux distributions generally have older versions of Ruby available, so these
instructions are designed to install Ruby from the official source code.
Remove the old Ruby 1.8 if present: Remove the old Ruby 1.8 if present:
sudo apt-get remove ruby1.8 sudo apt-get remove ruby1.8
...@@ -132,7 +137,7 @@ Download Ruby and compile it: ...@@ -132,7 +137,7 @@ Download Ruby and compile it:
make make
sudo make install sudo make install
Install the Bundler Gem: Then install the Bundler Gem:
sudo gem install bundler --no-ri --no-rdoc sudo gem install bundler --no-ri --no-rdoc
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment