mirror of
https://github.com/jcwimer/railsVagrant
synced 2026-03-25 02:44:44 +00:00
13 lines
149 B
Bash
13 lines
149 B
Bash
#!/usr/bin/env bash
|
|
|
|
source $HOME/.rvm/scripts/rvm
|
|
|
|
rvm use --default --install $1
|
|
|
|
shift
|
|
|
|
if (( $# ))
|
|
then gem install $@
|
|
fi
|
|
|
|
rvm cleanup all |