Skip to content

Instantly share code, notes, and snippets.

@mikechau
Created February 25, 2014 06:33
Show Gist options
  • Save mikechau/9203859 to your computer and use it in GitHub Desktop.
Save mikechau/9203859 to your computer and use it in GitHub Desktop.
Guard livereload
YourApp::::Application.configure do
# ... settings
config.middleware.use Rack::LiveReload
end
group :development do
gem 'guard', require: false
gem 'rack-livereload'
gem 'guard-livereload', require: false
end
1. bundle install
2. guard init
3. guard init livereload
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment