diff options
author | Jacob Vosmaer <contact@jacobvosmaer.nl> | 2015-09-29 17:24:22 +0200 |
---|---|---|
committer | Jacob Vosmaer <contact@jacobvosmaer.nl> | 2015-09-29 17:24:22 +0200 |
commit | 60b3055c0c3061ed0eb2ff40913b6b9d85c6cbae (patch) | |
tree | e689a07c728d5e2f872363353f15e89d13f08ad7 /doc | |
parent | 70460f7989739fe06a0c2fbef8dc35bd31e18322 (diff) | |
download | gitlab-ce-60b3055c0c3061ed0eb2ff40913b6b9d85c6cbae.tar.gz |
Use Ruby 2.1.7 for new installs from sourcegolang-ruby-versions
Diffstat (limited to 'doc')
-rw-r--r-- | doc/install/installation.md | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/doc/install/installation.md b/doc/install/installation.md index 6d3b318737c..518b914fe67 100644 --- a/doc/install/installation.md +++ b/doc/install/installation.md @@ -115,8 +115,9 @@ Remove the old Ruby 1.8 if present Download Ruby and compile it: mkdir /tmp/ruby && cd /tmp/ruby - curl -L --progress http://cache.ruby-lang.org/pub/ruby/2.1/ruby-2.1.6.tar.gz | tar xz - cd ruby-2.1.6 + curl -O --progress https://cache.ruby-lang.org/pub/ruby/2.1/ruby-2.1.7.tar.gz + echo 'e2e195a4a58133e3ad33b955c829bb536fa3c075 ruby-2.1.7.tar.gz' | shasum -c - && tar xzf ruby-2.1.7.tar.gz + cd ruby-2.1.7 ./configure --disable-install-rdoc make sudo make install |