Last active
August 29, 2015 13:57
-
-
Save njh/9790943 to your computer and use it in GitHub Desktop.
Revisions
-
njh revised this gist
Mar 31, 2014 . 1 changed file with 4 additions and 3 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -3,9 +3,10 @@ for path in `rbenv root`"/versions/"*; do if [ -d "$path" ] && [ ! -h "$path" ]; then export RBENV_VERSION="${path##*/}" echo "=== Running 'rake spec' for $RBENV_VERSION ===" rm -f Gemfile.lock rbenv exec bundle install --local rbenv exec rake spec echo && echo fi done -
njh created this gist
Mar 26, 2014 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,11 @@ #!/bin/bash for path in `rbenv root`"/versions/"*; do if [ -d "$path" ] && [ ! -h "$path" ]; then export RBENV_VERSION="${path##*/}" echo "Running 'rake spec' for $RBENV_VERSION:" rm Gemfile.lock rbenv exec bundle install rbenv exec rake spec fi done