Capistrano::Hutch
Hutch integration for Capistrano 3
Installation
Add this lines to your application's Gemfile:
gem 'hutch', github: 'gocardless/hutch' # currently capistrano-hutch requires HEAD version of hutch.
gem 'capistrano-hutch', group: :development
And then execute:
$ bundle
Usage
ruby # Capfile
require 'capistrano/hutch'
Configurable options, shown here with defaults:
```ruby
hutch_role: :app
hutch_default_hooks: true
hutch_pid: File.join(shared_path, 'tmp', 'pids', 'hutch.pid')
hutch_config: File.join(shared_path, 'config', 'hutch.yml')
hutch_env: fetch(:rails_env, fetch(:rack_env, fetch(:stage)))
hutch_options: nil
Do not forget to create config/hutch.yml
on production host and setup symlink.
Contributing
- Fork it ( https://github.com/[my-github-username]/capistrano-hutch/fork )
- 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 a new Pull Request