mirror of
https://github.com/zammad/zammad
synced 2026-05-24 09:48:36 +00:00
11 lines
394 B
Ruby
11 lines
394 B
Ruby
# 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})
|
|
watch(%r{public/.+\.(css|js|html)})
|
|
watch(%r{config/locales/.+\.yml})
|
|
# Rails Assets Pipeline
|
|
watch(%r{(app|vendor)(/assets/\w+/(.+\.(css|js|html|png|jpg|svg))).*}) { |m| "/assets/#{m[3]}" }
|
|
end
|