trabajo-afectivo/Guardfile

12 lines
395 B
Plaintext
Raw Normal View History

# A sample Guardfile
# More info at https://github.com/guard/guard#readme
guard 'livereload', port: '35738' do
watch(%r{app/views/.+\.(erb|haml|slim)$})
watch(%r{app/helpers/.+\.rb})
2015-05-07 17:27:53 +00:00
watch(%r{public/.+\.(css|js|html|svg)})
watch(%r{config/locales/.+\.yml})
# Rails Assets Pipeline
2014-10-07 19:15:41 +00:00
watch(%r{(app|vendor)(/assets/\w+/(.+\.(css|js|html|png|jpg|svg))).*}) { |m| "/assets/#{m[3]}" }
end