Skip to content

Commit

Permalink
Resolve rubocop warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
tas50 committed Oct 7, 2015
1 parent acaab1f commit 9fead12
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Guardfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ guard 'rubocop' do
watch('metadata.rb')
end

guard :rspec, :cmd => 'chef exec /opt/chefdk/embedded/bin/rspec', :all_on_start => false, :notification => false do
guard :rspec, cmd: 'chef exec /opt/chefdk/embedded/bin/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(/^(recipes)\/(.+)\.rb$/) { |m| "spec/#{m[1]}_spec.rb" }
watch('spec/spec_helper.rb') { 'spec' }
end

0 comments on commit 9fead12

Please sign in to comment.