This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
commit 192d8e41e47841f6037fef73929b1f2cbfc3e7a4
tree ffd74a0847cb41e7b5ea3f36916037c8c50d7226
parent 1114c00039b55b65b8a527c3ddbcb861d742a99a
tree ffd74a0847cb41e7b5ea3f36916037c8c50d7226
parent 1114c00039b55b65b8a527c3ddbcb861d742a99a
| name | age | message | |
|---|---|---|---|
| |
.gitignore | Tue May 06 20:25:00 -0700 2008 | [rmm5t] |
| |
CHANGELOG | Wed May 07 06:08:57 -0700 2008 | [jamis] |
| |
MIT-LICENSE | Sun Mar 04 14:25:51 -0800 2007 | [jamis] |
| |
README | Sun Apr 27 20:57:49 -0700 2008 | [jamis] |
| |
Rakefile | Tue May 06 20:25:00 -0700 2008 | [rmm5t] |
| |
bin/ | Sat Sep 01 08:03:58 -0700 2007 | [jamis] |
| |
capistrano.gemspec | Fri May 02 13:47:55 -0700 2008 | [jamis] |
| |
examples/ | Sun Mar 04 14:25:51 -0800 2007 | [jamis] |
| |
lib/ | Tue May 06 20:03:30 -0700 2008 | [jamis] |
| |
setup.rb | Wed Mar 28 21:48:34 -0700 2007 | [jamis] |
| |
test/ | Sat May 10 16:07:44 -0700 2008 | [rmm5t] |
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.




