remove deprecated rspec option from guardfile

This commit is contained in:
Matthew Lehner 2012-12-13 14:49:15 -08:00
parent ebeb331f0f
commit a69cdf1103

View File

@ -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" }