# guard-pow **Repository Path**: mirrors_guard/guard-pow ## Basic Information - **Project Name**: guard-pow - **Description**: Guard::Pow automatically manage Pow applications restart - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-08 - **Last Updated**: 2026-06-20 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Guard::Pow [![Gem Version](https://badge.fury.io/rb/guard-pow.png)](http://badge.fury.io/rb/guard-pow) [![Build Status](https://travis-ci.org/guard/guard-pow.png?branch=master)](http://travis-ci.org/guard/guard-pow) [![Dependency Status](https://gemnasium.com/guard/guard-pow.png)](https://gemnasium.com/guard/guard-pow) [![Code Climate](https://codeclimate.com/github/guard/guard-pow.png)](https://codeclimate.com/github/guard/guard-pow) 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](https://github.com/guard/guard) installed before continue. Install the gem: ``` bash gem install guard-pow ``` Add it to your Gemfile (inside development group): ``` ruby gem 'guard-pow', require: false ``` Add guard definition to your Guardfile by running this command: ``` bash guard init pow ``` Usage ----- Please read [Guard usage doc](https://github.com/guard/guard#readme) Guardfile --------- Pow guard can be really be adapated to all kind of projects. Please read [Guard doc](https://github.com/guard/guard#readme) for more info about Guardfile DSL. ### Rails app ``` ruby 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: ``` ruby restart_on_start: true # Restart Pow on Guard start, default: false restart_on_reload: false # Restart Pow on Guard reload, default: true ``` Development ----------- * Source hosted at [GitHub](https://github.com/guard/guard-rspec) * Report issues/Questions/Feature requests on [GitHub Issues](https://github.com/guard/guard-rspec/issues) 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](https://github.com/thibaudgg)