Skip to content

Commit

Permalink
Ask guard not to run all tests on start
Browse files Browse the repository at this point in the history
  • Loading branch information
dzaporozhets committed Sep 10, 2012
1 parent 3f01ec2 commit a2f7f48
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Guardfile
Original file line number Diff line number Diff line change
@@ -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" }
Expand Down

0 comments on commit a2f7f48

Please sign in to comment.