summaryrefslogtreecommitdiff
path: root/Guardfile
diff options
context:
space:
mode:
authorMichael Bleigh <michael@intridea.com>2011-07-22 16:33:18 -0500
committerMichael Bleigh <michael@intridea.com>2011-07-22 16:33:18 -0500
commitd01a163b6927c4edf997560ad14094db6a1b6ab3 (patch)
tree6766e9c015e5723befe97c2b19f618fb4bb9afba /Guardfile
parentf1fdd291cd9d548159972515060525c569738006 (diff)
downloadhashie-d01a163b6927c4edf997560ad14094db6a1b6ab3.tar.gz
Switch to Bundler for gem management and Guard for autotesting.
Diffstat (limited to 'Guardfile')
-rw-r--r--Guardfile5
1 files changed, 5 insertions, 0 deletions
diff --git a/Guardfile b/Guardfile
new file mode 100644
index 0000000..6851230
--- /dev/null
+++ b/Guardfile
@@ -0,0 +1,5 @@
+guard 'rspec' do
+ watch(%r{^spec/.+_spec\.rb})
+ watch(%r{^lib/(.+)\.rb}) { |m| "spec/lib/#{m[1]}_spec.rb" }
+ watch('spec/spec_helper.rb') { "spec" }
+end