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' }