public
Description: Remote multi-server automation tool
Homepage: http://www.capify.org
Clone URL: git://github.com/jamis/capistrano.git
Search Repo:
jamis (author)
Sun May 11 16:56:21 -0700 2008
commit  610cb337af9ac1eec76880d907d24c8c24e4b036
tree    eab720919672c892d2372f0fa15faa4f462b67cb
parent  3dbc0d2bc5d3fb0cb8c384fbe99b62a429ab4bd5 parent  25764b3aa1c19bdb0a75df7d226ac29960a15452
name age message
folder .gitignore Tue May 06 20:25:00 -0700 2008 Fixed `rake coverage` [rmm5t]
folder CHANGELOG Sun May 11 15:28:40 -0700 2008 update changelog, and fix warning [jamis]
folder MIT-LICENSE Sun Mar 04 14:25:51 -0800 2007 THANKS file is not applicable anymore. Bring va... [jamis]
folder README Sun Apr 27 20:57:49 -0700 2008 update README to reflect new dependencies [jamis]
folder Rakefile Tue May 06 20:25:00 -0700 2008 Fixed `rake coverage` [rmm5t]
folder bin/ Sat Sep 01 08:03:58 -0700 2007 capify-generated Capfile will autoload all reci... [jamis]
folder capistrano.gemspec Fri May 02 13:47:55 -0700 2008 version bump, prepping for 2.3 release [jamis]
folder examples/ Sun Mar 04 14:25:51 -0800 2007 THANKS file is not applicable anymore. Bring va... [jamis]
folder lib/ Sun May 11 16:56:21 -0700 2008 Merge branch 'rmm5t/master' [jamis]
folder setup.rb Wed Mar 28 21:48:34 -0700 2007 Add deploy:check test for verifying that depend... [jamis]
folder test/ Sun May 11 16:56:21 -0700 2008 Merge branch 'rmm5t/master' [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 v2 (http://net-ssh.rubyforge.org)
* Net::SFTP v2 (http://net-ssh.rubyforge.org)
* Net::SCP v1 (http://net-ssh.rubyforge.org)
* Net::SSH::Gateway v1 (http://net-ssh.rubyforge.org)
* 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.