https://github.com/deepblue/guard-clockwork
guard gem for clockwork
https://github.com/deepblue/guard-clockwork
Last synced: 11 months ago
JSON representation
guard gem for clockwork
- Host: GitHub
- URL: https://github.com/deepblue/guard-clockwork
- Owner: deepblue
- License: mit
- Created: 2013-04-03T06:54:59.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2013-04-03T07:20:40.000Z (over 13 years ago)
- Last Synced: 2024-11-20T13:23:19.597Z (over 1 year ago)
- Language: Ruby
- Size: 113 KB
- Stars: 0
- Watchers: 1
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Guard::Clockwork
Guard::Clockwork automatically starts/stops/restarts [Clockwork](https://github.com/tomykaira/clockwork)
inspired by [Guard::Sidekiq](https://github.com/uken/guard-sidekiq)
## Installation
Add this line to your application's Gemfile:
gem 'guard-clockwork'
And then execute:
$ bundle
Or install it yourself as:
$ gem install guard-clockwork
Add guard definition to your Guardfile by running this command:
guard init clockwork
## Usage
Please read [Guard usage doc](http://github.com/guard/guard#readme).
## Guardfile
guard 'clockwork', clockfile: 'config/clock.rb' do
watch(%r{^config/clock.rb$})
watch(%r{^app/workers/(.+)\.rb})
end
## Options
You can customize clockwork via the following options:
* `clockfile`: YOUR_CLOCK.rb
## Contributing
1. Fork it
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create new Pull Request