No commit activity in last 3 years
No release in over 3 years
Capistrano scripts for deploying applications with Procodile.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
 Dependencies
 Project Readme

Procodile Capistrano Recipes

Procodile is a process mangager for development & production use.

These are recipes for Capistrano 2 and 3 which will automatically send the appropriate commands whenever you start, stop or restart a deployment. Both sets of recipes allow you to run procodile commands directly as well as running them automatically on deployment.

  • procodile:start - start processes
  • procodile:stop - stops processes
  • procodile:restart - restarts processes
  • procodile:status - returns the status output

You can also pass a list of processes to the first three commands using the processes option. For example:

cap procodole:restart -s "processes=worker"

Installation

Add the gem to your Gemfile and run bundle install.

group :development do
  gem 'procodile-capistrano'
end

Then you'll need to require the appropriate file in your Capfile.

# For Capistrano 2
require 'procodile/capistrano2'
# For Capistrano 3
require 'procodile/capistrano3'