Commit a2f7f48c034bc32fe626980ed88f8789b19b36bd

Authored by randx
1 parent 3f01ec2d

Ask guard not to run all tests on start

Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
1 # A sample Guardfile 1 # A sample Guardfile
2 # More info at https://github.com/guard/guard#readme 2 # More info at https://github.com/guard/guard#readme
3 3
4 -guard 'rspec', :version => 2 do 4 +guard 'rspec', :version => 2, :all_on_start => false do
5 watch(%r{^spec/.+_spec\.rb$}) 5 watch(%r{^spec/.+_spec\.rb$})
6 watch(%r{^lib/(.+)\.rb$}) { |m| "spec/lib/#{m[1]}_spec.rb" } 6 watch(%r{^lib/(.+)\.rb$}) { |m| "spec/lib/#{m[1]}_spec.rb" }
7 watch('spec/spec_helper.rb') { "spec" } 7 watch('spec/spec_helper.rb') { "spec" }