# Guard::LiveReload [![Build Status](https://secure.travis-ci.org/guard/guard-livereload.png)](http://travis-ci.org/guard/guard-livereload) LiveReload guard allows to automatically reload your browser when 'view' files are modified. ## Install Please be sure to have [Guard](https://github.com/guard/guard) installed before continuing. Install the gem: ``` bash $ gem install guard-livereload ``` Add it to your Gemfile (inside development group): ``` ruby group :development do gem 'guard-livereload' end ``` Add guard definition to your Guardfile by running this command: ``` bash $ guard init livereload ``` Use [rack-livereload](https://github.com/johnbintz/rack-livereload) or install [LiveReload Safari/Chrome extension](http://github.com/mockko/livereload#readme) ### Optional To optimize communication with the LiveReload extension, install the yajl-ruby to increase JSON performance: ``` bash $ gem install yajl-ruby ``` ## Usage Please read [Guard usage doc](http://github.com/guard/guard#readme) and [rack-livereload how it works readme section](https://github.com/johnbintz/rack-livereload#readme) or [LiveReload extension usage doc](http://github.com/mockko/livereload#readme) ## Guardfile You can adapt your 'view' files like you want. Please read [Guard doc](http://github.com/guard/guard#readme) for more info about Guardfile DSL. ``` ruby guard 'livereload' 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+/(.+\.(s[ac]ss|coffee|css|js|html))).*}) { |m| "/assets/#{m[3]}" } end ``` ## Options LiveReload guard has 6 options that you can set like this: ``` ruby guard 'livereload', :api_version => '1.4', :port => '35728' do # ... end ``` Available options: ``` ruby :api_version => '1.4' # default '1.6' :host => '127.3.3.1' # default '0.0.0.0' :port => '12345' # default '35729' :apply_js_live => false # default true :apply_css_live => false # default true :grace_period => 0.5 # default 0 (seconds) ``` See [LiveReload configuration doc](http://github.com/mockko/livereload#readme) for more info about those options. ## Development * Source hosted at [GitHub](https://github.com/guard/guard-livereload). * Report issues and feature requests to [GitHub Issues](https://github.com/guard/guard-livereload/issues). Pull requests are very welcome! Please try to follow these simple "rules", though: * Please create a topic branch for every separate change you make. * Make sure your patches are well tested. * Update the README (if applicable). * Please **do not change** the version number. For questions please join us on our [Google group](http://groups.google.com/group/guard-dev) or on `#guard` (irc.freenode.net). ## Author [Thibaud Guillaume-Gentil](https://github.com/thibaudgg)