0
0
Fork 0

guard should now be able to find the correct specs

This commit is contained in:
Gibheer 2013-01-09 20:09:40 +01:00
parent ae0b32a58f
commit 029781bbda
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ end
guard 'rspec' do
watch(%r{^spec/.+_spec\.rb$})
watch(%r{^lib/(.+)\.rb$}) { |m| "spec/lib/#{m[1]}_spec.rb" }
watch(%r{^lib/(.+)\.rb$}) { |m| "spec/unit/#{m[1]}/" }
watch('spec/spec_helper.rb') { "spec" }
end