Last active
December 21, 2015 16:48
-
-
Save simeonwillbanks/6335781 to your computer and use it in GitHub Desktop.
Use rbenv and zsh to run a test suite against multiple rubies. #ruby #zsh #rbenv #tdd
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
rubies=(1.8.7-p358 ree-1.8.7-2011.03 1.9.2-p290 1.9.3-p429 2.0.0-p247) | |
for r in $rubies | |
do | |
rbenv local $r; bundle install --without debug; CI=true bundle exec rake; | |
done |
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
rubies=(1.8.7-p358 ree-1.8.7-2011.03 1.9.2-p290 1.9.3-p429 2.0.0-dev) | |
for r in $rubies | |
do | |
rbenv local $r; bundle exec rake | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment