summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChulki Lee <chulki.lee@gmail.com>2015-04-13 22:08:19 -0700
committerChulki Lee <chulki.lee@gmail.com>2015-04-13 22:11:09 -0700
commit219a7c45f7ec01c151582d6e6db839be7df29bda (patch)
treee605f7c7e82eb3bace10bc3ad0729719c3a39a0f
parent4ab717ea6a65beca3e069ca8590c22c49085dc8c (diff)
downloadgitlab-ce-219a7c45f7ec01c151582d6e6db839be7df29bda.tar.gz
ruby 2.1.6
https://www.ruby-lang.org/en/news/2015/04/13/ruby-2-1-6-released/
-rw-r--r--.ruby-version2
-rw-r--r--doc/install/installation.md4
-rw-r--r--doc/update/6.x-or-7.x-to-7.9.md6
3 files changed, 6 insertions, 6 deletions
diff --git a/.ruby-version b/.ruby-version
index cd57a8b95d6..399088bf465 100644
--- a/.ruby-version
+++ b/.ruby-version
@@ -1 +1 @@
-2.1.5
+2.1.6
diff --git a/doc/install/installation.md b/doc/install/installation.md
index d6208bb0797..5a4909cd7c2 100644
--- a/doc/install/installation.md
+++ b/doc/install/installation.md
@@ -103,8 +103,8 @@ 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.5.tar.gz | tar xz
- cd ruby-2.1.5
+ 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
./configure --disable-install-rdoc
make
sudo make install
diff --git a/doc/update/6.x-or-7.x-to-7.9.md b/doc/update/6.x-or-7.x-to-7.9.md
index bd6eb6b211f..cd21631ef70 100644
--- a/doc/update/6.x-or-7.x-to-7.9.md
+++ b/doc/update/6.x-or-7.x-to-7.9.md
@@ -35,7 +35,7 @@ You can check which version you are running with `ruby -v`.
If you are you running Ruby 2.0.x, you do not need to upgrade ruby, but can consider doing so for performance reasons.
-If you are running Ruby 2.1.1 consider upgrading to 2.1.5, because of the high memory usage of Ruby 2.1.1.
+If you are running Ruby 2.1.1 consider upgrading to 2.1.6, because of the high memory usage of Ruby 2.1.1.
Install, update dependencies:
@@ -47,8 +47,8 @@ Download and compile Ruby:
```bash
mkdir /tmp/ruby && cd /tmp/ruby
-curl --progress http://cache.ruby-lang.org/pub/ruby/2.1/ruby-2.1.5.tar.gz | tar xz
-cd ruby-2.1.5
+curl --progress http://cache.ruby-lang.org/pub/ruby/2.1/ruby-2.1.6.tar.gz | tar xz
+cd ruby-2.1.6
./configure --disable-install-rdoc
make
sudo make install