From c0bf7ab5cd4995a362bab29bd787278e730fabb9 Mon Sep 17 00:00:00 2001 From: Sarah Mei Date: Fri, 8 Oct 2010 00:39:30 -0600 Subject: [PATCH] Rake task for CI that includes a bundle install --- lib/tasks/ci.rake | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 lib/tasks/ci.rake diff --git a/lib/tasks/ci.rake b/lib/tasks/ci.rake new file mode 100644 index 000000000..2bd2dddaa --- /dev/null +++ b/lib/tasks/ci.rake @@ -0,0 +1,5 @@ +desc "Run all specs and features" +task :ci => [:environment] do + system "bundle install" + system "bundle exec rake" +end \ No newline at end of file