Skip to content

Instantly share code, notes, and snippets.

@skade
Forked from dhepper/ci.sh
Created February 27, 2012 10:21
Show Gist options
  • Save skade/1922984 to your computer and use it in GitHub Desktop.
Save skade/1922984 to your computer and use it in GitHub Desktop.
Poor man's CI, Ruby edition
# gem install guard; guard
guard 'django_tests' 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