Guardfile in percheron-0.6.4 vs Guardfile in percheron-0.7.0
- old
+ new
@@ -1,5 +1,5 @@
guard :rspec, cmd: 'bundle exec rspec' do
- watch(%r{^spec/.+_spec\.rb$})
- watch(%r{^lib/(.+)\.rb$}) { |m| "spec/#{m[1]}_spec.rb" }
- watch('spec/spec_helper.rb') { "spec" }
+ watch(%r{^spec\/.+_spec\.rb$})
+ watch(%r{^lib\/(.+)\.rb$}) { |m| "spec/unit/#{m[1]}_spec.rb" }
+ watch('spec/spec_helper.rb') { 'spec' }
end