From a2f7f48c034bc32fe626980ed88f8789b19b36bd Mon Sep 17 00:00:00 2001 From: randx Date: Mon, 10 Sep 2012 19:50:35 +0300 Subject: Ask guard not to run all tests on start --- Guardfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Guardfile b/Guardfile index 6ed414bc4c5..0eea2ad9244 100644 --- a/Guardfile +++ b/Guardfile @@ -1,7 +1,7 @@ # A sample Guardfile # More info at https://github.com/guard/guard#readme -guard 'rspec', :version => 2 do +guard 'rspec', :version => 2, :all_on_start => false do watch(%r{^spec/.+_spec\.rb$}) watch(%r{^lib/(.+)\.rb$}) { |m| "spec/lib/#{m[1]}_spec.rb" } watch('spec/spec_helper.rb') { "spec" } -- cgit v1.2.3