diff options
Diffstat (limited to 'Guardfile')
-rw-r--r-- | Guardfile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |