topaz2/chef_boilerplate

View on GitHub
Guardfile

Summary

Maintainability
Test Coverage
# A sample Guardfile
# More info at https://github.com/guard/guard#readme

# guard 'kitchen' do
#   watch(/test\/.+/)
#   watch(/^recipes\/(.+)\.rb$/)
#   watch(/^attributes\/(.+)\.rb$/)
#   watch(/^files/(.+)/)
#   watch(/^templates\/(.+)/)
#   watch(/^providers\/(.+)\.rb/)
#   watch(/^resources\/(.+)\.rb/)
# end

guard 'foodcritic', cookbook_paths: '.', cli: '--tags ~FC001 --tags ~FC014', all_on_start: false do
  watch(/attributes\/.+\.rb$/)
  watch(/providers\/.+\.rb$/)
  watch(/recipes\/.+\.rb$/)
  watch(/resources\/.+\.rb$/)
  watch('metadata.rb')
end

guard 'rubocop', all_on_start: false do
  watch(/attributes\/.+\.rb$/)
  watch(/providers\/.+\.rb$/)
  watch(/recipes\/.+\.rb$/)
  watch(/resources\/.+\.rb$/)
  watch('metadata.rb')
end

guard :rspec, cmd: 'bundle exec 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' }
end