0.06
No commit activity in last 3 years
No release in over 3 years
Guard::Sidekiq automatically starts/stops/restarts sidekiq worker
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 0.2.0
>= 0
~> 2.5.0

Runtime

>= 2
 Project Readme

Guard::Sidekiq

Build Status

Guard::Sidekiq automatically starts/stops/restarts Sidekiq workers

forked from Guard::Resque

Install

Please be sure to have Guard installed before continue.

Install the gem:

gem install guard-sidekiq

Add it to your Gemfile (inside test group):

gem 'guard-sidekiq'

Add guard definition to your Guardfile by running this command:

guard init sidekiq

Usage

Please read Guard usage doc.

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

Guardfile

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

Options

You can customize the sidekiq task via the following options:

  • environment: the rails environment to run the workers in (defaults to nil)
  • queue: the sidekiq queue to run (defaults to default). Can supply a list of queues here.
  • logfile: sidekiq defaults to logging to STDOUT. Can specify a file to log to instead.
  • timeout: shutdown timeout
  • concurrency: the number of threads to include (defaults to 1)
  • verbose: whether to use verbose logging (defaults to nil)
  • stop_signal: how to kill the process when restarting (defaults to TERM)
  • require: location of rails application with workers or file to require (defaults to nil)
  • config: can specify a config file to load queue settings

Development

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

Testing the gem locally

gem install guard-sidekiq-0.x.x.gem

Building and deploying gem

  • Update the version number in lib/guard/sidekiq/version.rb

  • Update CHANGELOG.md

  • Build the gem:

    gem build guard-sidekiq.gemspec

  • Push to rubygems.org:

    gem push guard-sidekiq-0.x.x.gem

Guard::Delayed Authors

David Parry Dennis Reimann

Ideas for this gem came from Guard::WEBrick.

Guard::Resque Authors

Jacques Crocker

I hacked this together from the guard-delayed gem for use with Resque. All credit go to the original authors though. I just search/replaced and tweaked a few things

Guard::Sidekiq Authors

Mark Bolusmjak Pitr Vernigorov David Parry

Replaces "rescue" with "sidekiq"

Copyright

  • Copyright
    • Copyright 2013 Uken Games
  • License
    • Apache License, Version 2.0