Rake task for CI that includes a bundle install

This commit is contained in:
Sarah Mei 2010-10-08 00:39:30 -06:00
parent 03a0031ddd
commit c0bf7ab5cd

5
lib/tasks/ci.rake Normal file
View file

@ -0,0 +1,5 @@
desc "Run all specs and features"
task :ci => [:environment] do
system "bundle install"
system "bundle exec rake"
end