Sha256: bac917a01fccadd3e60ba0a3b94d463603c4e70b66d7c309d77b92d10ffd88d7
Contents?: true
Size: 998 Bytes
Versions: 10
Compression:
Stored size: 998 Bytes
Contents
# A sample Guardfile # More info at https://github.com/guard/guard#readme guard 'livereload' do watch(%r{app/views/.+\.(erb|haml|slim)$}) watch(%r{app/helpers/.+\.rb}) watch(%r{public/.+\.(sass|css|js|html)}) watch(%r{config/locales/.+\.yml}) # Rails Assets Pipeline watch(%r{(app|vendor)(/assets/\w+/(.+\.(sass|css|js|html|png|jpg))).*}) { |m| "/assets/#{m[3]}" } end guard 'livereload' do watch(%r{app/views/.+\.(erb|haml|slim)$}) watch(%r{app/helpers/.+\.rb}) watch(%r{public/.+\.(sass|css|js|html)}) watch(%r{config/locales/.+\.yml}) # Rails Assets Pipeline watch(%r{(app|vendor)(/assets/\w+/(.+\.(sass|css|js|html|png|jpg))).*}) { |m| "/assets/#{m[3]}" } end guard 'livereload' do watch(%r{app/views/.+\.(erb|haml|slim)$}) watch(%r{app/helpers/.+\.rb}) watch(%r{public/.+\.(sass|css|js|html)}) watch(%r{config/locales/.+\.yml}) # Rails Assets Pipeline watch(%r{(app|vendor)(/assets/\w+/(.+\.(sass|css|js|html|png|jpg))).*}) { |m| "/assets/#{m[3]}" } end
Version data entries
10 entries across 10 versions & 1 rubygems