Skip to content

Commit

Permalink
Add all_on_start: false
Browse files Browse the repository at this point in the history
  • Loading branch information
topaz2 committed Oct 14, 2014
1 parent 6428096 commit 7f8e636
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Guardfile
@@ -1,7 +1,7 @@
# A sample Guardfile
# More info at https://github.com/guard/guard#readme

guard 'kitchen' do
guard 'kitchen', all_on_start: false do
watch(/test\/.+/)
watch(/^recipes\/(.+)\.rb$/)
watch(/^attributes\/(.+)\.rb$/)
Expand All @@ -27,9 +27,9 @@ guard 'rubocop', all_on_start: false do
watch('metadata.rb')
end

guard :rspec, cmd: 'bundle exec rspec', all_on_start: false, notification: false do
guard :rspec, cmd: 'bundle ex rspec', all_on_start: false, notification: false do
watch(/^libraries\/(.+)\.rb$/)
watch(/^spec\/(.+)_spec\.rb$/)
watch(/^(recipes)\/(.+)\.rb$/) { |m| "spec/#{m[1]}_spec.rb" }
watch('spec/spec_helper.rb') { 'spec' }
watch('spec/spec_helper.rb') { 'spec' }
end

0 comments on commit 7f8e636

Please sign in to comment.