From d01a163b6927c4edf997560ad14094db6a1b6ab3 Mon Sep 17 00:00:00 2001 From: Michael Bleigh Date: Fri, 22 Jul 2011 16:33:18 -0500 Subject: Switch to Bundler for gem management and Guard for autotesting. --- Guardfile | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 Guardfile (limited to 'Guardfile') 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 -- cgit v1.2.1