Guard::Delayed automatically starts/stops/restarts delayed_job
Please be sure to have Guard installed before continuing.
Install the gem:
gem install guard-delayed
or 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
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.
guard 'delayed', :environment => 'development' do
watch(%r{^app/(.+)\.rb})
end
- Source hosted at GitHub
- Report issues/Questions/Feature requests on GitHub Issues
Pull requests are very welcome! Make sure your patches are well tested. Please create a topic branch for every separate change you make.
-
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.2.0.gem
gem install guard-delayed-0.2.0.gem
Ideas for this gem came from Guard::WEBrick.
I originally called this guard-delayed_job
but had all sorts of unexpected behaviour when trying to build the gem.
After much fruitless investigation it appeared that the underscore was the problem, so I renamed it to guard-delayed
.
Anybody else encountered this? Let me know if you have. Thanks in advance.