Skip to content

guard/guard-pow

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Guard::Pow

Gem Version Build Status Dependency Status Code Climate

Pow guard allows to automatically & intelligently restart your applications (just by touching tmp/restart.txt)

  • Tested on Ruby 1.9.3, 2.0.0, rbx & jruby

Install

Please be sure to have Guard installed before continue.

Install the gem:

gem install guard-pow

Add it to your Gemfile (inside development group):

gem 'guard-pow', require: false

Add guard definition to your Guardfile by running this command:

guard init pow

Usage

Please read Guard usage doc

Guardfile

Pow guard can be really be adapated to all kind of projects. Please read Guard doc for more info about Guardfile DSL.

Rails app

guard 'pow' do
  watch('.powrc')
  watch('.powenv')
  watch('.rvmrc')
  watch('Gemfile')
  watch('Gemfile.lock')
  watch('config/application.rb')
  watch('config/environment.rb')
  watch(%r{^config/environments/.*\.rb$})
  watch(%r{^config/initializers/.*\.rb$})
end

List of available options:

restart_on_start: true   # Restart Pow on Guard start, default: false
restart_on_reload: false # Restart Pow on Guard reload, default: true

Development

Pull requests are very welcome! Make sure your patches are well tested. Please create a topic branch for every separate change you make.

Author

Thibaud Guillaume-Gentil