Project

guard-pow

0.03
No commit activity in last 3 years
No release in over 3 years
Guard::Pow automatically manage Pow applications restart
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 1.3.5
>= 0
>= 0

Runtime

~> 2.0
 Project Readme

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