Skip to content

Instantly share code, notes, and snippets.

@whistler
Created June 6, 2012 13:47
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save whistler/2881953 to your computer and use it in GitHub Desktop.
Save whistler/2881953 to your computer and use it in GitHub Desktop.
Pull Rails application and test repeatedly
#!/bin/bash
while [ true ]; do
git pull origin master
bundle install
rake db:migrate
rake rake:test:prepare
rake spec
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment