Compare commits
17 Commits
nathanhoel
...
master
Author | SHA1 | Date |
---|---|---|
John Bintz | 8cf0ebec60 | |
John Bintz | c0c47cc83b | |
John Bintz | 16c1ba76ed | |
John Bintz | f830396dbf | |
John Bintz | 41bdc64bcb | |
John Bintz | 651d202dd2 | |
John Bintz | ffa5d63ffc | |
John Bintz | d06a756c8d | |
John Bintz | ef3895cbcf | |
John Bintz | 727296953b | |
John Bintz | 618feb865c | |
John Bintz | f5cbf07d21 | |
John Bintz | 493aa6255d | |
Chris Kelly | e7cbf825d9 | |
Payam Moghaddam | 9a4316ce37 | |
samcon | 27063b7d20 | |
Robert Coleman | 64449acbc9 |
11
.travis.yml
11
.travis.yml
|
@ -1,19 +1,10 @@
|
|||
rvm:
|
||||
- 1.8.7
|
||||
- 1.9.2
|
||||
- 1.9.3
|
||||
- 2.0.0
|
||||
branches:
|
||||
only:
|
||||
- master
|
||||
gemfile:
|
||||
- gemfiles/rails30.gemfile
|
||||
- gemfiles/rails31.gemfile
|
||||
- gemfiles/rails32.gemfile
|
||||
- gemfiles/rails40.gemfile
|
||||
matrix:
|
||||
exclude:
|
||||
- rvm: 1.8.7
|
||||
gemfile: gemfiles/rails40.gemfile
|
||||
- rvm: 1.9.2
|
||||
gemfile: gemfiles/rails40.gemfile
|
||||
|
||||
|
|
|
@ -1,11 +1,3 @@
|
|||
appraise 'rails30' do
|
||||
gem 'rails', '~> 3.0.0'
|
||||
end
|
||||
|
||||
appraise 'rails31' do
|
||||
gem 'rails', '~> 3.1.0'
|
||||
end
|
||||
|
||||
appraise 'rails32' do
|
||||
gem 'rails', '~> 3.2.0'
|
||||
end
|
||||
|
|
35
README.md
35
README.md
|
@ -1,9 +1,11 @@
|
|||
# Rack::LiveReload
|
||||
|
||||
_This fork is deprecated: Go check out https://github.com/onesupercoder/rack-livereload instead._
|
||||
|
||||
<a href="http://travis-ci.org/johnbintz/rack-livereload"><img src="https://secure.travis-ci.org/johnbintz/rack-livereload.png" /></a>
|
||||
[![Code Climate](https://codeclimate.com/github/johnbintz/rack-livereload.png)](https://codeclimate.com/github/johnbintz/rack-livereload)
|
||||
|
||||
Hey, you've got [LiveReload](http://www.livereload.com/) in my [Rack](http://rack.rubyforge.org/)!
|
||||
Hey, you've got [LiveReload](http://livereload.com/) in my [Rack](http://rack.rubyforge.org/)!
|
||||
No need for browser extensions anymore! Just plug it in your middleware stack and go!
|
||||
Even supports browsers without WebSockets!
|
||||
|
||||
|
@ -16,7 +18,7 @@ Use this with [guard-livereload](http://github.com/guard/guard-livereload) for m
|
|||
Add the gem to your Gemfile.
|
||||
|
||||
```ruby
|
||||
gem "rack-livereload", :group => :development
|
||||
gem "rack-livereload", group: :development
|
||||
```
|
||||
|
||||
Then add the middleware to your Rails middleware stack by editing your `config/environments/development.rb`.
|
||||
|
@ -25,8 +27,11 @@ Then add the middleware to your Rails middleware stack by editing your `config/e
|
|||
# config/environments/development.rb
|
||||
|
||||
MyApp::Application.configure do
|
||||
# Add Rack::LiveReload to the bottom of the middleware stack with the default options.
|
||||
config.middleware.use Rack::LiveReload
|
||||
# Add Rack::LiveReload to the bottom of the middleware stack with the default options:
|
||||
config.middleware.insert_after ActionDispatch::Static, Rack::LiveReload
|
||||
|
||||
# or, if you're using better_errors:
|
||||
config.middleware.insert_before Rack::Lock, Rack::LiveReload
|
||||
|
||||
# ...
|
||||
end
|
||||
|
@ -37,15 +42,19 @@ end
|
|||
```ruby
|
||||
# Specifying Rack::LiveReload options.
|
||||
config.middleware.use(Rack::LiveReload,
|
||||
:min_delay => 500, # default 1000
|
||||
:max_delay => 10_000, # default 60_000
|
||||
:live_reload_port => 56789, # default 35729
|
||||
:host => 'myhost.cool.wow',
|
||||
:ignore => [ %r{dont/modify\.html$} ]
|
||||
min_delay : 500, # default 1000
|
||||
max_delay : 10_000, # default 60_000
|
||||
live_reload_port : 56789, # default 35729
|
||||
host : 'myhost.cool.wow',
|
||||
ignore : [ %r{dont/modify\.html$} ]
|
||||
)
|
||||
```
|
||||
|
||||
In addition, Rack::LiveReload's position within middleware stack can be specified by inserting it relative to an exsiting middleware via `insert_before` or `insert_after`. See the [Rails on Rack: Adding a Middleware](http://guides.rubyonrails.org/rails_on_rack.html#adding-a-middleware) section for more detail.
|
||||
In addition, Rack::LiveReload's position within middleware stack can be
|
||||
specified by inserting it relative to an exsiting middleware via
|
||||
`insert_before` or `insert_after`. See the [Rails on Rack: Adding a
|
||||
Middleware](http://guides.rubyonrails.org/rails_on_rack.html#adding-a-middleware)
|
||||
section for more detail.
|
||||
|
||||
### Sinatra / config.ru
|
||||
|
||||
|
@ -54,7 +63,7 @@ require 'rack-livereload'
|
|||
|
||||
use Rack::LiveReload
|
||||
# ...or...
|
||||
use Rack::LiveReload, :min_delay => 500, ...
|
||||
use Rack::LiveReload, min_delay: 500, ...
|
||||
```
|
||||
|
||||
## How it works
|
||||
|
@ -82,13 +91,13 @@ your browser doesn't need it. The SWF WebSocket implementor won't be loaded unle
|
|||
WebSockets support or if you force it in the middleware stack:
|
||||
|
||||
``` ruby
|
||||
use Rack::LiveReload, :force_swf => true
|
||||
use Rack::LiveReload, force_swf: true
|
||||
```
|
||||
|
||||
If you don't want any of the web-sockets-js code included at all, use the `no_swf` option:
|
||||
|
||||
``` ruby
|
||||
use Rack::LiveReload, :no_swf => true
|
||||
use Rack::LiveReload, no_swf: true
|
||||
```
|
||||
|
||||
Once more browsers support WebSockets than don't, this option will be reversed and you'll have
|
||||
|
|
|
@ -1,7 +0,0 @@
|
|||
# This file was generated by Appraisal
|
||||
|
||||
source "http://rubygems.org"
|
||||
|
||||
gem "rails", "~> 3.0.0"
|
||||
|
||||
gemspec :path=>"../"
|
|
@ -1,7 +0,0 @@
|
|||
# This file was generated by Appraisal
|
||||
|
||||
source "http://rubygems.org"
|
||||
|
||||
gem "rails", "~> 3.1.0"
|
||||
|
||||
gemspec :path=>"../"
|
|
@ -1,6 +1,6 @@
|
|||
require "rack/livereload"
|
||||
|
||||
class Rack::LiveReload
|
||||
VERSION = '0.3.15'
|
||||
VERSION = '0.3.16'
|
||||
end
|
||||
|
||||
|
|
|
@ -9,8 +9,12 @@ module Rack
|
|||
|
||||
attr_reader :content_length, :new_body, :livereload_added
|
||||
|
||||
def protocol
|
||||
@options[:protocol] || "http"
|
||||
end
|
||||
|
||||
def livereload_local_uri
|
||||
"http://localhost:#{@options[:live_reload_port]}/livereload.js"
|
||||
"#{protocol}://localhost:#{@options[:live_reload_port]}/livereload.js"
|
||||
end
|
||||
|
||||
def initialize(body, options)
|
||||
|
|
|
@ -28,7 +28,8 @@ module Rack
|
|||
end
|
||||
|
||||
def ignored?
|
||||
@options[:ignore] and @options[:ignore].any? { |filter| @env['PATH_INFO'][filter] }
|
||||
path = @env['QUERY_STRING'].empty? ? @env['PATH_INFO'] : "#{@env['PATH_INFO']}?#{@env['QUERY_STRING']}"
|
||||
@options[:ignore] and @options[:ignore].any? { |filter| path[filter] }
|
||||
end
|
||||
|
||||
def bad_browser?
|
||||
|
|
|
@ -15,7 +15,7 @@ describe Rack::LiveReload::BodyProcessor do
|
|||
end
|
||||
|
||||
it 'responds false when no head tag' do
|
||||
regex.match("<header></header>").should be_false
|
||||
regex.match("<header></header>").should be_falsey
|
||||
end
|
||||
end
|
||||
|
||||
|
|
|
@ -14,7 +14,7 @@ describe Rack::LiveReload::ProcessingSkipAnalyzer do
|
|||
|
||||
describe '#skip_processing?' do
|
||||
it "should skip processing" do
|
||||
subject.skip_processing?.should be_true
|
||||
subject.skip_processing?.should be_truthy
|
||||
end
|
||||
end
|
||||
|
||||
|
@ -22,13 +22,13 @@ describe Rack::LiveReload::ProcessingSkipAnalyzer do
|
|||
let(:options) { { :ignore => [ %r{file} ] } }
|
||||
|
||||
context 'path contains ignore pattern' do
|
||||
let(:env) { { 'PATH_INFO' => '/this/file' } }
|
||||
let(:env) { { 'PATH_INFO' => '/this/file', 'QUERY_STRING' => '' } }
|
||||
|
||||
it { should be_ignored }
|
||||
end
|
||||
|
||||
context 'root path' do
|
||||
let(:env) { { 'PATH_INFO' => '/' } }
|
||||
let(:env) { { 'PATH_INFO' => '/', 'QUERY_STRING' => '' } }
|
||||
|
||||
it { should_not be_ignored }
|
||||
end
|
||||
|
@ -56,7 +56,8 @@ describe Rack::LiveReload::ProcessingSkipAnalyzer do
|
|||
|
||||
describe '#ignored?' do
|
||||
let(:path_info) { 'path info' }
|
||||
let(:env) { { 'PATH_INFO' => path_info } }
|
||||
let(:query_string) { 'query_string' }
|
||||
let(:env) { { 'PATH_INFO' => path_info, 'QUERY_STRING' => query_string } }
|
||||
|
||||
context 'no ignore set' do
|
||||
it { should_not be_ignored }
|
||||
|
@ -67,6 +68,12 @@ describe Rack::LiveReload::ProcessingSkipAnalyzer do
|
|||
|
||||
it { should be_ignored }
|
||||
end
|
||||
|
||||
context 'ignore set including query_string' do
|
||||
let(:options) { { :ignore => [ %r{#{path_info}\?#{query_string}} ] } }
|
||||
|
||||
it { should be_ignored }
|
||||
end
|
||||
end
|
||||
|
||||
describe '#bad_browser?' do
|
||||
|
|
|
@ -7,7 +7,9 @@ describe Rack::LiveReload do
|
|||
|
||||
subject { middleware }
|
||||
|
||||
its(:app) { should == app }
|
||||
it 'should be an app' do
|
||||
middleware.app.should be == app
|
||||
end
|
||||
|
||||
let(:env) { {} }
|
||||
let(:options) { {} }
|
||||
|
@ -20,7 +22,7 @@ describe Rack::LiveReload do
|
|||
end
|
||||
|
||||
it 'should return the js file' do
|
||||
middleware._call(env).should be_true
|
||||
middleware._call(env).should be_truthy
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue