Capistrano::Clockwork
Integrate clockwork gem with capistrano
Installation
Add this line to your application's Gemfile:
gem 'daemons'
gem 'capistrano-clockwork'
or:
gem 'daemons'
gem 'capistrano-clockwork', group: :development
Make sure the daemons gem is required in production.
And then execute:
$ bundle
Usage
require 'capistrano/clockwork'
Configurable options, shown here with defaults:
By default the gem expects a the clockwork script to be present in the lib folder
:clockwork_default_hooks = true
:clockwork_file = "lib/clockwork.rb"
:clockwork_role = :app
To override the defaults just change it in your Capfile
To Change the clockscript location
set :clockwork_file, "clockwork.rb"
To remove the default hooks
By default the clockwork daemon is restarted everytime you deploy to your server
set :clockwork_default_hooks, false
To change server role
By default the clockwork will be deployed with :app
role
set :clockwork_role, :app
Other capistrano tasks
By default the clockwork daemon is restarted everytime you deploy to your server
cap clockwork:restart
cap clockwork:stop
cap clockwork:status
cap clockwork:start
Contributing
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request
- Build your gem using the rake command
rake build