Ruby on Rails | Screencasts | Download | Documentation | Weblog | Community | Source

Changeset 6715

Show
Ignore:
Timestamp:
05/11/07 03:50:41 (2 years ago)
Author:
minam
Message:

Fix some documentation typos (closes #7711)

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • tools/capistrano/CHANGELOG

    r6714 r6715  
    11*SVN* 
     2 
     3* Fix some documentation typos [eventualbuddha] 
    24 
    35* Don't retry failed connections if an explicit auth_methods list is given [Chris Farms] 
  • tools/capistrano/lib/capistrano/cli.rb

    r6436 r6715  
    88  # The CLI class encapsulates the behavior of capistrano when it is invoked 
    99  # 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. 
    1111  class CLI 
    1212    # The array of (unparsed) command-line options 
     
    2020    #   Capistrano::CLI.parse(%w(-vvvv -r config/deploy update_code)).execute! 
    2121    # 
    22     # Note that you can also embed cao directly by creating a new Configuration 
     22    # Note that you can also embed cap directly by creating a new Configuration 
    2323    # instance and setting it up, but you'll often wind up duplicating logic 
    2424    # defined in the CLI class. The above snippet, redone using the Configuration