Skip to content

Instantly share code, notes, and snippets.

@bernardeli
Created February 16, 2012 03:28
Show Gist options
  • Save bernardeli/1841487 to your computer and use it in GitHub Desktop.
Save bernardeli/1841487 to your computer and use it in GitHub Desktop.
rake build
desc "Run all tests"
task :build do
system "rm rerun.txt"
raise 'Error on rspec. Fix it, bro' unless system "bundle exec rspec spec"
raise 'Error on cucumber plain. Fix it, bro' unless system "bundle exec cucumber"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment