Created
May 13, 2009 03:15
-
-
Save zdennis/110852 to your computer and use it in GitHub Desktop.
This file contains 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
# ar-extensions only affects ActiveRecord so I have | |
# a rake task which loads ActiveRecord, and then | |
# ar-extensions, and then runs ActiveRecord's test suite | |
# to make sure I didn't break anything. | |
for tag in master v2.3.2.1 v2.2.2 v2.1.2 v1.2.6 ; do | |
echo | |
echo | |
echo | |
echo "***************************************************" | |
echo " $tag" | |
echo "***************************************************" | |
pushd ~/source/opensource_projects/rails/ | |
git checkout $tag | |
popd | |
time rake test:activerecord:mysql ~/source/opensource_projects/rails/activerecord | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment