Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStan Hu <stanhu@gmail.com>2018-06-08 18:19:26 +0300
committerStan Hu <stanhu@gmail.com>2018-06-08 18:19:26 +0300
commitf0bf1b64a1dfa4f6715463b9e82291f54104eb37 (patch)
treea18245bf797e4b8311cee448bd7ec3de65a39906 /doc/update/10.8-to-11.0.md
parentea535bfbc56a18ebfbfdb2764e19a00ffc4b1d7f (diff)
Update Ruby upgrade instructions for 11.0
Diffstat (limited to 'doc/update/10.8-to-11.0.md')
-rw-r--r--doc/update/10.8-to-11.0.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/update/10.8-to-11.0.md b/doc/update/10.8-to-11.0.md
index 64b268f7ca2..87b5dfe226b 100644
--- a/doc/update/10.8-to-11.0.md
+++ b/doc/update/10.8-to-11.0.md
@@ -31,7 +31,7 @@ sudo -u git -H bundle exec rake gitlab:backup:create RAILS_ENV=production
### 3. Update Ruby
-NOTE: GitLab 9.0 and higher only support Ruby 2.3.x and dropped support for Ruby 2.1.x. Be
+NOTE: GitLab 11.0 and higher only support Ruby 2.4.x and dropped support for Ruby 2.3.x. Be
sure to upgrade your interpreter if necessary.
You can check which version you are running with `ruby -v`.
@@ -40,9 +40,9 @@ Download Ruby and compile it:
```bash
mkdir /tmp/ruby && cd /tmp/ruby
- curl --remote-name --progress https://cache.ruby-lang.org/pub/ruby/2.3/ruby-2.3.7.tar.gz
- echo '540996fec64984ab6099e34d2f5820b14904f15a ruby-2.3.7.tar.gz' | shasum -c - && tar xzf ruby-2.3.7.tar.gz
- cd ruby-2.3.7
+ curl --remote-name --progress https://cache.ruby-lang.org/pub/ruby/2.4/ruby-2.4.4.tar.gz
+ echo 'ec82b0d53bd0adad9b19e6b45e44d54e9ec3f10c ruby-2.4.4.tar.gz' | shasum -c - && tar xzf ruby-2.4.4.tar.gz
+ cd ruby-2.4.4
./configure --disable-install-rdoc
make