Skip to content

Instantly share code, notes, and snippets.

@dhepper
Forked from skade/Guardfile
Created February 29, 2012 10:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dhepper/1939794 to your computer and use it in GitHub Desktop.
Save dhepper/1939794 to your computer and use it in GitHub Desktop.
Poor man's CI, Ruby edition
# gem install guard guard-shell; guard
guard 'shell' do
watch(%r{(.+)\.py}) do |m|
`django-admin.py test main`
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment