1
0
mirror of https://github.com/jcwimer/railsVagrant synced 2026-05-15 16:59:38 +00:00

Moved rvm setup to provisioning

This commit is contained in:
2016-08-09 16:28:28 -04:00
parent 599e761099
commit 52aedbca57
8 changed files with 37 additions and 19 deletions

13
setup/ruby-install.sh Normal file
View File

@@ -0,0 +1,13 @@
#!/usr/bin/env bash
source $HOME/.rvm/scripts/rvm
rvm use --default --install $1
shift
if (( $# ))
then gem install $@
fi
rvm cleanup all