summaryrefslogtreecommitdiff
path: root/Guardfile
diff options
context:
space:
mode:
authorMichael Bleigh <michael@intridea.com>2011-08-02 17:23:13 -0500
committerMichael Bleigh <michael@intridea.com>2011-08-02 17:23:13 -0500
commit5513b967b2114c1c2fe70b867d539493ff24d91b (patch)
tree427a829e0240289ef7241a218c6698d498678ef5 /Guardfile
parent3bd79790bcfa51c7d39a71a644ef1b0e74ced591 (diff)
downloadhashie-5513b967b2114c1c2fe70b867d539493ff24d91b.tar.gz
Remove reference to singleton_class, that's Ruby 1.9 only.
Diffstat (limited to 'Guardfile')
-rw-r--r--Guardfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Guardfile b/Guardfile
index 6851230..88dbe06 100644
--- a/Guardfile
+++ b/Guardfile
@@ -1,5 +1,5 @@
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/#{m[1]}_spec.rb" }
watch('spec/spec_helper.rb') { "spec" }
end