Sha256: 963edf3f9ac2f093710fcdcad29257e8347a2fc3fb96491414c990d9b7ddf7c5
Contents?: true
Size: 489 Bytes
Versions: 11
Compression:
Stored size: 489 Bytes
Contents
# A sample Guardfile # More info at https://github.com/guard/guard#readme config = { :host => '0.0.0.0', :port => '35729', } guard 'livereload' do watch(%r{components/.+\.(css|js|html)}) # 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))).*}) { |m| "/assets/#{m[3]}" } end guard 'webrick'
Version data entries
11 entries across 11 versions & 1 rubygems