Sha256: 57ae71362858c4984922b28f86cd3f9f5fbe279acec457c5e92205bba82fae9e
Contents?: true
Size: 558 Bytes
Versions: 94
Compression:
Stored size: 558 Bytes
Contents
# LiveReload installation # # 1. Add the guard-livereload gem to your Gemfile OR uncomment the line: # # gem 'guard-livereload' # # 2. Install the gem on your machine # # bundle install # # 3. Launch Guard # # bundle exec guard # guard 'livereload', host: '0.0.0.0', port: ENV['WAGON_LIVERELOAD_PORT'] || 35729, grace_period: 0.5 do watch(%r{app/content_types/.+\.yml$}) watch(%r{app/views/.+\.liquid}) watch(%r{config/.+\.yml$}) watch(%r{data/.+\.yml$}) watch(%r{public/((stylesheets|javascripts)/(.+\.(css|js))).*}) { |m| "/#{m[1]}" } end
Version data entries
94 entries across 24 versions & 1 rubygems