From 712e9501a2ba22f7085ec53fea36466e9ef430b4 Mon Sep 17 00:00:00 2001 From: Thibault Jouan Date: Tue, 1 Apr 2014 10:24:57 +0000 Subject: [PATCH] Update Guardfile --- Guardfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Guardfile b/Guardfile index da0c0d3..421f56c 100644 --- a/Guardfile +++ b/Guardfile @@ -1,4 +1,4 @@ -guard 'spork', :cucumber => false, :rspec_env => { 'RAILS_ENV' => 'test' } do +guard 'spork', :rspec_env => { 'RAILS_ENV' => 'test' } do watch('config/application.rb') watch('config/environment.rb') watch('config/routes.rb') @@ -8,7 +8,7 @@ guard 'spork', :cucumber => false, :rspec_env => { 'RAILS_ENV' => 'test' } do watch(%r{^spec/support/.+\.rb$}) end -guard 'rspec', :cli => '--drb', :notification => false do +guard 'rspec', :cmd => 'bundle exec rspec --drb -f doc' do watch(%r{^spec/.+_spec\.rb$}) watch('spec/spec_helper.rb') { 'spec' }