Go to file
John Bintz c12bf6b01e bump version 2011-11-14 08:51:16 -05:00
js initial commit 2011-11-04 11:51:22 -04:00
lib bump version 2011-11-14 08:51:16 -05:00
spec detection and use of local livereload if available 2011-11-08 09:48:34 -05:00
.gitignore initial commit 2011-11-04 11:51:22 -04:00
Gemfile initial commit 2011-11-04 11:51:22 -04:00
Guardfile a few more fixes 2011-11-07 08:49:42 -05:00
README.md detection and use of local livereload if available 2011-11-08 09:48:34 -05:00
Rakefile initial commit 2011-11-04 11:51:22 -04:00
config.ru initial commit 2011-11-04 11:51:22 -04:00
rack-livereload.gemspec detection and use of local livereload if available 2011-11-08 09:48:34 -05:00

README.md

Hey, you've got LiveReload in my Rack! No need for browser extensions anymore! Just plug it in your middleware stack and go!

Use this with guard-livereload for maximum fun!

Install

gem install rack-livereload

Using in...

Rails

In config/environments/development.rb:

MyApp::Application.configure do
  config.middleware.insert_before(Rack::Lock, Rack::LiveReload)

  # ...or, change some options...

  config.middleware.insert_before(
    Rack::Lock, Rack::LiveReload,
    :min_delay => 500,
    :max_delay => 10000,
    :port => 56789,
    :host => 'myhost.cool.wow'
  )
end

config.ru/Sinatra

require 'rack-livereload'

use Rack::LiveReload
# ...or...
use Rack::LiveReload, :min_delay => 500, ...

How it works

The necessary script tag to bring in a copy of livereload.js is injected right before the closing head tag in any text/html pages that come through. The script tag is built in such a way that the HTTP_HOST is used as the LiveReload host, so you can connect from external machines (say, to mycomputer:3000 instead of localhost:3000) and as long as the LiveReload port is accessible from the external machine, you'll connect and be LiveReloading away!

Which LiveReload script does it use?

  • If you've got a LiveReload watcher running on the same machine as the app that responds to http://localhost:35729/livereload.js, that gets used, with the hostname being changed when injected into the HTML page.
  • If you don't, the copy vendored with rack-livereload is used.
  • You can force the use of either one (and save on the cost of checking to see if that file is available) with the middleware option :source => :vendored or :source => :livereload.

As usual, super-alpha!