Guardfile in zendesk2-0.0.23 vs Guardfile in zendesk2-0.1.0
- old
+ new
@@ -1,9 +1,10 @@
-# A sample Guardfile
-# More info at https://github.com/guard/guard#readme
+guard 'bundler' do
+ watch('Gemfile')
+ watch(/^.+\.gemspec/)
+end
-guard 'rspec', :version => 2 do
+guard 'rspec' do
watch(%r{^spec/.+_spec\.rb$})
watch(%r{^lib/(.+)\.rb$}) { "spec" }
watch('spec/spec_helper.rb') { "spec" }
end
-