You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Additional Notes : In order to get a proper Ruby setup we build it from source
9
9
```
10
10
@@ -221,15 +221,20 @@ You might have to logout and login again for the `$PATH` to take effect.
221
221
222
222
The use of ruby version managers such as [RVM](http://rvm.io/), [rbenv](https://github.com/sstephenson/rbenv) or [chruby](https://github.com/postmodern/chruby) with GitLab in production frequently leads to hard to diagnose problems. Version managers are not supported and we stronly advise everyone to follow the instructions below to use a system ruby.
223
223
224
-
Remove the old Ruby 1.8 if present:
224
+
Remove the old Ruby 1.8 package if present. Gitlab 6.7 only supports the Ruby 2.0.x release series:
225
225
226
226
yum remove ruby
227
227
228
+
Remove any other Ruby build if it is still present:
229
+
230
+
cd <your-ruby-source-path>
231
+
make uninstall
232
+
228
233
Download Ruby and compile it:
229
234
230
235
mkdir /tmp/ruby && cd /tmp/ruby
231
-
curl --progress ftp://ftp.ruby-lang.org/pub/ruby/2.1/ruby-2.1.1.tar.gz | tar xz
232
-
cd ruby-2.1.1
236
+
curl --progress ftp://ftp.ruby-lang.org/pub/ruby/2.0/ruby-2.0.0-p451.tar.gz | tar xz
0 commit comments