public
Description: Remote multi-server automation tool
Homepage: http://www.capify.org
Clone URL: git://github.com/jamis/capistrano.git
Search Repo:
jamis (author)
Fri Jun 15 19:52:43 -0700 2007
commit  98e87d56d153775ff0e1034e68a31b6c54024503
tree    d21328eeb7dac3c718335879f0a9d510d8330d85
parent  e9cf802b824e2d4adbe86ea4db9bd8d008343c5c
name age message
folder CHANGELOG Fri Jun 15 19:52:43 -0700 2007 version bump [jamis]
folder MIT-LICENSE Sun Mar 04 14:25:51 -0800 2007 THANKS file is not applicable anymore. Bring va... [jamis]
folder README Mon Mar 26 09:38:28 -0700 2007 add deployify script to the gemspec [jamis]
folder Rakefile Thu Apr 26 19:20:21 -0700 2007 Start writing tests for the deployment code. Ma... [jamis]
folder bin/ Tue May 15 07:56:24 -0700 2007 document the start/finish and load/exit callbac... [jamis]
folder capistrano.gemspec Tue Apr 24 21:25:18 -0700 2007 point at new capistrano homepage [jamis]
folder examples/ Sun Mar 04 14:25:51 -0800 2007 THANKS file is not applicable anymore. Bring va... [jamis]
folder lib/ Fri Jun 15 19:52:43 -0700 2007 version bump [jamis]
folder setup.rb Wed Mar 28 21:48:34 -0700 2007 Add deploy:check test for verifying that depend... [jamis]
folder test/ Thu Jun 14 09:01:49 -0700 2007 server options take precedence over ssh_options... [jamis]
README
= Capistrano

Capistrano is a utility and framework for executing commands in parallel on multiple remote machines, via SSH. It uses a 
simple DSL (borrowed in part from Rake, http://rake.rubyforge.org/) that allows you to define _tasks_, which may be 
applied to machines in certain roles. It also supports tunneling connections via some gateway machine to allow 
operations to be performed behind VPN's and firewalls.

Capistrano was originally designed to simplify and automate deployment of web applications to distributed environments, 
and originally came bundled with a set of tasks designed for deploying Rails applications. The deployment tasks are now 
(as of Capistrano 2.0) opt-in and require clients to explicitly put
"load 'deploy'" in their recipes.

== Dependencies

* Net::SSH and Net::SFTP (http://net-ssh.rubyforge.org)
* Needle (via Net::SSH)
* HighLine (http://highline.rubyforge.org)

If you want to run the tests, you'll also need to have the following dependencies installed:

* Mocha (http://mocha.rubyforge.org)

== Assumptions

Capistrano is "opinionated software", which means it has very firm ideas about how things ought to be done, and tries to 
force those ideas on you. Some of the assumptions behind these opinions are:

* You are using SSH to access the remote servers.
* You either have the same password to all target machines, or you have public keys in place to allow passwordless 
access to them.

Do not expect these assumptions to change.

== Usage

In general, you'll use Capistrano as follows:

* Create a recipe file ("capfile" or "Capfile").
* Use the +cap+ script to execute your recipe.

Use the +cap+ script as follows:

    cap sometask

By default, the script will look for a file called one of +capfile+ or +Capfile+. The +someaction+ text indicates which 
task to execute. You can do "cap -h" to see all the available options and "cap -T" to see all the available tasks.