summaryrefslogtreecommitdiff
path: root/Guardfile
diff options
context:
space:
mode:
authorGibheer <gibheer@gmail.com>2012-11-15 06:43:54 +0100
committerGibheer <gibheer@gmail.com>2012-11-15 06:43:54 +0100
commit023b70f41c49825dcbf3c677fa14a5b41e503219 (patch)
tree97c864018e657c89f272aecddcdff93a9b8952e7 /Guardfile
parent8f5486700bc5a61d2c62a52a6200f5ea049e0f00 (diff)
delete :version to avoid deprecation message
Diffstat (limited to 'Guardfile')
-rw-r--r--Guardfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Guardfile b/Guardfile
index b5c7298..dedbe20 100644
--- a/Guardfile
+++ b/Guardfile
@@ -7,7 +7,7 @@ guard 'bundler' do
watch(/^.+\.gemspec/)
end
-guard 'rspec', :version => 2 do
+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" }