Guard::Delayed

Guard::Delayed automatically starts/stops/restarts delayed_job

Install

Please be sure to have Guard installed before continuing.

Add it to your Gemfile (inside your development and/or test group):

gem 'guard-delayed'

Add guard definition to your Guardfile by running this command:

guard init delayed

Usage

Please read Guard usage doc.

I suggest you put the delayed guard definition before your test/rspec guard if your tests depend on it being active.

Guardfile

guard 'delayed', :environment => 'development' do
  watch(%r{^app/(.+)\.rb})
end

Development

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

Building and deploying gem

  • Update the version number in lib/guard/delayed/version.rb
  • Update CHANGELOG.md
  • Build the gem:

    gem build guard-delayed.gemspec

  • Push to rubygems.org:

    gem push guard-delayed-0.3.2.gem

Testing the gem locally

gem install guard-delayed-0.3.2.gem

Authors

David Parry Dennis Reimann

Ideas for this gem came from Guard::WEBrick.