1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2025-02-19 13:54:25 +01:00

Update Ruby dependency to 2.3.8 under the virtual environment

This commit is contained in:
David O' Rojo 2019-09-11 12:32:54 -05:00
parent 04803eda5c
commit 87540ab1a9

View File

@ -157,11 +157,11 @@ install_rvm() {
install_ruby() {
echo 'Installing Ruby'
sudo apt-get install -y libxml2-dev libxslt1-dev libpq-dev libidn11-dev
rvm install ruby-2.3.6
rvm use ruby-2.3.6@global
rvm install ruby-2.3.8
rvm use ruby-2.3.8@global
gem update --system --no-doc
gem update --no-doc
rvm use ruby-2.3.6 --default
rvm use ruby-2.3.8 --default
rvm cleanup all
}