2013-11-24 16:09:26 +01:00
|
|
|
# A sample Guardfile
|
|
|
|
# More info at https://github.com/guard/guard#readme
|
|
|
|
|
2014-08-15 19:28:51 +02:00
|
|
|
# rubocop:disable all
|
2013-11-24 16:09:26 +01:00
|
|
|
guard :livereload do
|
2013-11-25 00:35:40 +01:00
|
|
|
watch(%r{app/views/.+\.(erb|haml|slim)$})
|
2013-11-24 16:09:26 +01:00
|
|
|
watch(%r{app/helpers/.+\.rb})
|
|
|
|
watch(%r{public/.+\.(css|js|html)})
|
|
|
|
watch(%r{config/locales/.+\.yml})
|
|
|
|
# Rails Assets Pipeline
|
2013-11-25 00:35:40 +01:00
|
|
|
watch(%r{(app|vendor)(/assets/\w+/(.+\.(css|js|html))).*}) { |m| "/assets/#{m[3]}" }
|
2013-11-24 16:09:26 +01:00
|
|
|
end
|
2013-11-25 18:26:50 +01:00
|
|
|
|
|
|
|
guard :minitest do
|
|
|
|
# with Minitest::Unit
|
|
|
|
watch(%r{^test/(.*)\/?test_(.*)\.rb})
|
|
|
|
watch(%r{^lib/(.*/)?([^/]+)\.rb}) { |m| "test/#{m[1]}test_#{m[2]}.rb" }
|
|
|
|
watch(%r{^test/test_helper\.rb}) { 'test' }
|
|
|
|
|
|
|
|
# Rails 4
|
|
|
|
watch(%r{^app/(.+)\.rb}) { |m| "test/#{m[1]}_test.rb" }
|
|
|
|
watch(%r{^app/controllers/application_controller\.rb}) { 'test/controllers' }
|
|
|
|
watch(%r{^app/controllers/(.+)_controller\.rb}) { |m| "test/integration/#{m[1]}_test.rb" }
|
|
|
|
watch(%r{^app/views/(.+)_mailer/.+}) { |m| "test/mailers/#{m[1]}_mailer_test.rb" }
|
|
|
|
watch(%r{^lib/(.+)\.rb}) { |m| "test/lib/#{m[1]}_test.rb" }
|
|
|
|
watch(%r{^test/.+_test\.rb})
|
|
|
|
watch(%r{^test/test_helper\.rb}) { 'test' }
|
|
|
|
end
|
2014-01-01 21:26:35 +01:00
|
|
|
|
|
|
|
notification :notifysend
|
2014-06-09 20:36:53 +02:00
|
|
|
|
|
|
|
guard 'brakeman', run_on_start: true, quiet: true, min_confidence: 10 do
|
|
|
|
watch(%r{^app/.+\.(erb|haml|rhtml|rb)$})
|
|
|
|
watch(%r{^config/.+\.rb$})
|
|
|
|
watch(%r{^lib/.+\.rb$})
|
|
|
|
watch('Gemfile')
|
|
|
|
end
|
2014-08-06 14:47:47 +02:00
|
|
|
|
|
|
|
guard :rubocop, cli: ['--rails'] do
|
|
|
|
watch(%r{.+\.rb$})
|
|
|
|
watch(%r{(?:.+/)?\.rubocop\.yml$}) { |m| File.dirname(m[0]) }
|
|
|
|
end
|