Skip to content

Commit

Permalink
Update guard to watch some more paths.
Browse files Browse the repository at this point in the history
  • Loading branch information
cmeiklejohn committed Aug 20, 2011
1 parent f9702b6 commit 8befd09
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Guardfile
Expand Up @@ -3,7 +3,8 @@


guard 'rspec', :version => 2 do guard 'rspec', :version => 2 do
watch(%r{^spec/.+_spec\.rb$}) watch(%r{^spec/.+_spec\.rb$})
watch(%r{^lib/(.+)\.rb$}) { "spec/" } watch(%r{^lib/(.+)\.rb$}) { "spec/" }
watch('spec/spec_helper.rb') { "spec/" } watch(%r{^spec/support/(.+)\.rb$}) { "spec/" }
watch('spec/spec_helper.rb') { "spec/" }
end end


0 comments on commit 8befd09

Please sign in to comment.