Configured guard and livereload to use rack-livereload

This commit is contained in:
echarp 2015-10-24 17:14:47 +02:00
parent d822d0fe7b
commit 5a42699f47
3 changed files with 16 additions and 8 deletions

15
Gemfile
View File

@ -96,17 +96,18 @@ gem 'twitter'
group :development do
gem 'sqlite3'
gem 'guard-livereload'
gem 'guard-migrate'
gem 'guard-bundler'
gem 'guard-minitest'
gem 'webrick'
gem 'quiet_assets'
gem 'guard-rubocop'
gem 'guard-migrate', require: false
gem 'guard-bundler', require: false
gem 'guard-rubocop', require: false
gem 'guard-minitest', require: false
gem 'guard-livereload', require: false
gem 'rack-livereload'
gem 'haml-lint'
gem 'webrick', '>= 1.3.1'
# Security checks
gem 'brakeman', require: false
gem 'guard-brakeman'
gem 'guard-brakeman', require: false
end
group :test do

View File

@ -289,6 +289,8 @@ GEM
quiet_assets (1.1.0)
railties (>= 3.1, < 5.0)
rack (1.6.4)
rack-livereload (0.3.16)
rack
rack-test (0.6.3)
rack (>= 1.0)
rails (4.2.4)
@ -470,6 +472,7 @@ DEPENDENCIES
mysql2 (~> 0.3.18)
paper_trail (~> 4.0.0.rc)
quiet_assets
rack-livereload
rails
rails-i18n
redcarpet
@ -488,7 +491,7 @@ DEPENDENCIES
twitter
uglifier
web-console (~> 2.0)
webrick (>= 1.3.1)
webrick
webshims-rails
BUNDLED WITH

View File

@ -39,4 +39,8 @@ Rails.application.configure do
# Raises error for missing translations
# config.action_view.raise_on_missing_translations = true
# Add Rack::LiveReload to the bottom of the middleware stack with the default
# options.
config.middleware.insert_after ActionDispatch::Static, Rack::LiveReload
end