From a69cdf110352bad08718bf8736817c213a2ea8a4 Mon Sep 17 00:00:00 2001 From: Matthew Lehner Date: Thu, 13 Dec 2012 14:49:15 -0800 Subject: [PATCH] remove deprecated rspec option from guardfile --- Guardfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Guardfile b/Guardfile index 5279189..f24ee41 100644 --- a/Guardfile +++ b/Guardfile @@ -1,7 +1,7 @@ # A sample Guardfile # More info at https://github.com/guard/guard#readme -guard 'rspec', :version => 2, :cli => '-c' do +guard 'rspec', :cli => '-c' do watch(%r{^spec/.+_spec\.rb$}) watch(%r{^lib/(.+)\.rb$}) { |m| "spec/#{m[1]}_spec.rb" } watch('spec/spec_helper.rb') { "spec" }