Changeset 6715
- Timestamp:
- 05/11/07 03:50:41 (2 years ago)
- Files:
-
- tools/capistrano/CHANGELOG (modified) (1 diff)
- tools/capistrano/lib/capistrano/cli.rb (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
tools/capistrano/CHANGELOG
r6714 r6715 1 1 *SVN* 2 3 * Fix some documentation typos [eventualbuddha] 2 4 3 5 * Don't retry failed connections if an explicit auth_methods list is given [Chris Farms] tools/capistrano/lib/capistrano/cli.rb
r6436 r6715 8 8 # The CLI class encapsulates the behavior of capistrano when it is invoked 9 9 # as a command-line utility. This allows other programs to embed Capistrano 10 # and preserve it 's command-line semantics.10 # and preserve its command-line semantics. 11 11 class CLI 12 12 # The array of (unparsed) command-line options … … 20 20 # Capistrano::CLI.parse(%w(-vvvv -r config/deploy update_code)).execute! 21 21 # 22 # Note that you can also embed ca odirectly by creating a new Configuration22 # Note that you can also embed cap directly by creating a new Configuration 23 23 # instance and setting it up, but you'll often wind up duplicating logic 24 24 # defined in the CLI class. The above snippet, redone using the Configuration