18
0
Fork 0

Ruby 2.5.3

This commit is contained in:
Benoît S. 2019-03-11 11:35:16 +01:00
parent ba8f09ca3a
commit 39a92371fc
1 changed files with 6 additions and 6 deletions

View File

@ -33,7 +33,7 @@ Pin-Priority: 999
Pour NodeJS, il faut l'installer [ainsi](https://wiki.evolix.org/HowtoNodeJS).
Il faut aussi installer [Yarn](https://wiki.evolix.org/HowtoYarn).
Ruby sera installé manuellement en version 2.3.6.
Ruby sera installé manuellement en version 2.5.3.
On peut ainsi installer toutes les dépendances pour Gitlab :
@ -269,14 +269,14 @@ Installation manuelle à ne faire qu'une fois ou pour mettre à jour la version
$ cd ~
$ mkdir -p tmp/ruby
$ cd tmp/ruby
$ curl --remote-name --progress https://cache.ruby-lang.org/pub/ruby/2.3/ruby-2.3.6.tar.gz
$ echo '4e6a0f828819e15d274ae58485585fc8b7caace0 ruby-2.3.6.tar.gz' | shasum -c - && tar xzf ruby-2.3.6.tar.gz
$ cd ruby-2.3.6
$ curl --remote-name --progress https://cache.ruby-lang.org/pub/ruby/2.5/ruby-2.5.3.tar.gz
$ echo 'f919a9fbcdb7abecd887157b49833663c5c15fda ruby-2.5.3.tar.gz' | shasum -c - && tar xzf ruby-2.5.3.tar.gz
$ cd ruby-2.5.3
$ ./configure --disable-install-rdoc --with-jemalloc
$ make -j$(nproc)
# cd /home/foo/tmp/ruby/ruby-2.3.6
# cd /home/foo/tmp/ruby/ruby-2.5.3
# make install
# gem install bundler --no-ri --no-rdoc
# gem install bundler --no-document --version '< 2'
# chmod -R u=rwX,g=rX,o=rX /usr/local/
~~~