Created
August 24, 2011 16:07
-
-
Save diasjorge/1168404 to your computer and use it in GitHub Desktop.
test_rubies
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
RUBIES="ruby-1.8.7-skaes,ruby-1.9.2,rbx,jruby" | |
if [ -n $1 ]; then | |
RUBIES=${RUBIES//,/$1,} | |
RUBIES="$RUBIES$1" | |
fi | |
set -o verbose | |
rvm $RUBIES exec RBXOPT="-Xrbc.db" bundle | |
rvm $RUBIES exec RBXOPT="-Xrbc.db" bundle exec rake |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment