diff --git a/bootstrap.sh b/bootstrap.sh index 50a0adf..5108048 100644 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -44,6 +44,11 @@ if [ "$SETUP" = true ] ; then # INSTALL GIT apt-get install git -y + # INSTALL RUBY 1.9.3 (for rails) + apt-get install ruby1.9.3 -y + update-alternatives --set ruby /usr/bin/ruby1.9.1 + update-alternatives --set gem /usr/bin/gem1.9.1 + # INSTALL RUBYGEMS apt-get install rubygems -y