Guardfile in new-0.0.11 vs Guardfile in new-0.0.12

- old
+ new

@@ -4,10 +4,10 @@ guard :bundler do watch('Gemfile') end -guard :rspec, all_after_pass: true, all_on_start: true, cmd: 'bundle exec rspec doc spec tasks ~/.new/tasks' do +guard :rspec, all_after_pass: true, all_on_start: true, cmd: 'bundle exec rspec spec tasks ~/.new/tasks' do watch(%r{^spec/.+_spec\.rb$}) watch(%r{^tasks/.+_spec\.rb$}) watch(%r{^tasks/(.+[^_spec])\.rb$}) { |m| "tasks/#{m[1]}_spec.rb" } watch(%r{^lib/(.+)\.rb$}) { |m| "spec/lib/#{m[1]}_spec.rb" } watch('spec/spec_helper.rb') { 'spec' }