[Ruby on Rails 3, Ruby on Rails 4] Guardでブラウザの再読み込みを自動化する

ファイルが修正されると、ブラウザが自動的に再読み込みされます。

Contents

インストール

group :development, :test do
  gem 'guard-livereload'
end
% bundle install
% bundle exec guard init livereload

Chrome extension

設定

livereloadセクションがrspecより先に実行されるよう、
順番を入れ替えます。

% subl Guardfile
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+/(.+\.(css|js|html))).*}) { |m| "/assets/#{m[3]}" }
end
# A sample Guardfile
# More info at https://github.com/guard/guard#readme
guard 'rspec', :version => 2, :all_after_pass => false, :cli => '--drb' do

Guard を再起動する

% bundle exec guard