Added an option to change the port used by rack-livereload #25
Loading…
Reference in New Issue
No description provided.
Delete Branch "master"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
This allows the javascript to work with a non default value for the
livereload port (specified with the port option in the guard command).
For example, in config/environments/development.rb in rails:
config.middleware.insert_after(ActionDispatch::Static, Rack::LiveReload, :live_reload_port => 22351)
works with the following in the Guardfile:
guard 'livereload', port: '22351' do
...
end
This allows multiple guard livereload processes to operate at the same time without
conflicts.
Looks great! Merging in. Thanks!
Changes Unknown when pulling
206ce04e77
on davidmiani:master into * on johnbintz:master*.