aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGibheer <gibheer@gmail.com>2013-01-09 20:09:40 +0100
committerGibheer <gibheer@gmail.com>2013-01-09 20:09:40 +0100
commit029781bbdaf7cd277d108df60d27c69407fad377 (patch)
treed5943b2a49ab5fe98c35f1cc2bd06240a2be1929
parentae0b32a58f01a111505198dd282b314e914c531a (diff)
guard should now be able to find the correct specs
-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