# A sample Guardfile # More info at github.com/guard/guard#readme
# Run just the livereload monitor with: `guard -P livereload` guard :livereload do
watch(%r{app/views/.+\.(erb|haml|slim)$}) watch(%r{app/helpers/.+\.rb}) watch(%r{public/.+\.(css|js|html)}) watch(%r{config/locales/.+\.yml}) # Rails Assets Pipeline watch(%r{(app|lib|vendor)(/assets/\w+/(.+\.(css|js))).*}) { |m| "/assets/#{m[3]}" } watch(%r{(app|lib|vendor)(/assets/\w+/(.+)\.(scss))}) { |m| "/assets/#{m[3]}.css" } watch(%r{(app/assets/stylesheets/shared/)(\w+/(.+)\.(scss))}) { |m| "/assets/application.css" }
end
# guard :minitest, spring: true do # # Rails
4 # watch(%r{^app/(.+).rb$}) { |m| “test/#{m}_test.rb” } # watch(%r{^app/controllers/application_controller.rb$}) { 'test/controllers' } # watch(%r{^app/controllers/(.+)_controller.rb$}) { |m| “test/integration/#{m}_test.rb” } # watch(%r{^app/views/(.+)_mailer/.+}) { |m| “test/mailers/#{m}_mailer_test.rb” } # watch(%r{^app/workers/(.+).rb$}) { |m| “test/unit/workers/#{m}_test.rb” } # watch(%r{^lib/(.+).rb$}) { |m| “test/unit/lib/#{m}_test.rb” } # watch(%r{^lib/tasks/(.+).rake$}) { |m| “test/unit/lib/tasks/#{m}_test.rb” } # watch(%r{^test/.+_test.rb$}) # watch(%r{^test/test_helper.rb$}) { 'test' } # end