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
|
2018-09-15 23:50:13 +02: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
|
2016-04-23 14:50:45 +02:00
|
|
|
watch(%r{(app|vendor)(/assets/\w+/(.+\.(sass|coffee|haml))).*}) { |m| "/assets/#{m[3]}" }
|
2013-11-24 16:09:26 +01:00
|
|
|
end
|
2013-11-25 18:26:50 +01:00
|
|
|
|
2017-11-11 12:44:09 +01:00
|
|
|
guard :minitest, spring: 'bin/rails test' do
|
2013-11-25 18:26:50 +01:00
|
|
|
# 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
|
|
|
|
2014-11-05 21:25:18 +01:00
|
|
|
guard :brakeman, run_on_start: true, quiet: true, min_confidence: 10 do
|
2014-06-09 20:36:53 +02:00
|
|
|
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
|
2014-12-12 21:58:12 +01:00
|
|
|
|
|
|
|
guard 'migrate' do
|
|
|
|
watch(%r{^db/migrate/(\d+).+\.rb})
|
|
|
|
watch('db/seeds.rb')
|
|
|
|
end
|
2016-11-01 00:30:10 +01:00
|
|
|
|
2018-03-18 15:32:43 +01:00
|
|
|
guard :rails, port: 3000, host: '0.0.0.0', CLI: 'bin/rails server' do
|
2016-11-01 00:30:10 +01:00
|
|
|
watch('Gemfile.lock')
|
2017-05-22 16:42:21 +02:00
|
|
|
watch(%r{^(config|lib)/.*\.rb})
|
2016-11-01 00:30:10 +01:00
|
|
|
end
|