Capistrano::Thin
Simple Thin specific tasks for Capistrano 3.x, implements the following tasks:
deploy:restart
deploy:start
deploy:stop
Note: A valid Thin config file is expected under
config/thin/(production|staging|whatever).yml.
Installation
Add this line to your application's Gemfile:
gem 'capistrano-thin', '~> 1.1.0'
If you use RVM on the server you should also add:
gem 'capistrano-rvm'
And then execute:
$ bundle
Usage
Require in Capfile to load tasks:
require 'capistrano/thin'
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