Fixed rubocop messages

This commit is contained in:
Al Snow
2018-03-08 17:02:24 -05:00
parent 8dc8f4d61b
commit b8262ecb0a
7 changed files with 11 additions and 10 deletions
+2 -2
View File
@@ -10,7 +10,7 @@ guard "brakeman", run_on_start: true do
end
guard :shell do
watch(%r{^Gemfile|Gemfile.lock$}) { system("bundle-audit")}
watch(%r{^Gemfile|Gemfile.lock$}) { system("bundle-audit") }
end
guard "livereload", host: "railsgoat.dev", port: "35727" do
@@ -23,7 +23,7 @@ guard "livereload", host: "railsgoat.dev", port: "35727" do
end
guard :rspec, cmd: 'bundle exec rspec' do
guard :rspec, cmd: "bundle exec rspec" do
watch(%r{^spec/.+_spec\.rb$})
watch(%r{^lib/(.+)\.rb$}) { |m| "spec/lib/#{m[1]}_spec.rb" }
watch("spec/spec_helper.rb") { "spec" }