1
0
Fork 0
mirror of https://github.com/capistrano/capistrano synced 2023-03-27 23:21:18 -04:00

update README to reflect new dependencies

This commit is contained in:
Jamis Buck 2008-04-27 21:57:49 -06:00
parent 6292250134
commit c09e810abc

11
README
View file

@ -7,8 +7,10 @@ Capistrano was originally designed to simplify and automate deployment of web ap
== Dependencies
* Net::SSH and Net::SFTP (http://net-ssh.rubyforge.org)
* Needle (via Net::SSH)
* 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:
@ -36,8 +38,3 @@ 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.
== KNOWN ISSUES
* Using "put" to upload a file to two or more hosts when a gateway is in effect has a good chance of crashing with a "corrupt mac detected" error. This is due to a bug in Net::SSH.
* Running commands may rarely hang inexplicably. This appears to be specific only to certain platforms. Most people will never see this behavior.