summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Guardfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Guardfile b/Guardfile
index dedbe20..89ec005 100644
--- a/Guardfile
+++ b/Guardfile
@@ -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