From 68fa272612eb4af3a787c164719247c463ada4c3 Mon Sep 17 00:00:00 2001 From: etcet Date: Wed, 25 Dec 2013 11:44:44 -0600 Subject: [PATCH 1/2] GitLab 6.3 -> 6.4 --- install/centos/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/install/centos/README.md b/install/centos/README.md index 889af60..623a7bb 100644 --- a/install/centos/README.md +++ b/install/centos/README.md @@ -1,6 +1,6 @@ ``` Distribution : CentOS 6.5 -GitLab version : 6.0 - 6.3 +GitLab version : 6.0 - 6.4 Web Server : Apache, Nginx Init system : sysvinit Database : MySQL, PostgreSQL @@ -357,9 +357,9 @@ We'll install GitLab into home directory of the user `git`: cd /home/git/gitlab # Checkout to stable release - git checkout 6-3-stable + git checkout 6-4-stable -**Note:** You can change `6-3-stable` to `master` if you want the *bleeding edge* version, but +**Note:** You can change `6-4-stable` to `master` if you want the *bleeding edge* version, but do so with caution! ### Configure it From 13d647ceb3260d17428bb8ac7b360ed75df9f0c2 Mon Sep 17 00:00:00 2001 From: etcet Date: Wed, 25 Dec 2013 11:47:46 -0600 Subject: [PATCH 2/2] Ruby 2.0 -> 2.1 --- install/centos/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/install/centos/README.md b/install/centos/README.md index 623a7bb..ddca8f2 100644 --- a/install/centos/README.md +++ b/install/centos/README.md @@ -186,8 +186,8 @@ Download and compile it: su - mkdir /tmp/ruby && cd /tmp/ruby - curl --progress ftp://ftp.ruby-lang.org/pub/ruby/2.0/ruby-2.0.0-p353.tar.gz | tar xz - cd ruby-2.0.0-p353 + curl --progress ftp://ftp.ruby-lang.org/pub/ruby/2.1/ruby-2.1.0.tar.gz | tar xz + cd ruby-2.1.0 ./configure --prefix=/usr/local/ make && make install @@ -197,7 +197,7 @@ installed with: which ruby # /usr/local/bin/ruby ruby -v - # ruby 2.0.0p353 (2013-11-22 revision 43784) [x86_64-linux] + # ruby 2.1.0p0 (2013-12-25 revision 44422) [x86_64-linux] Install the Bundler Gem: