Skip to content

Commit

Permalink
Add help banner for the install command.
Browse files Browse the repository at this point in the history
  • Loading branch information
alloy committed Sep 13, 2011
1 parent 3326215 commit 422cc7e
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/cocoa_pods/command.rb
Expand Up @@ -14,7 +14,7 @@ def run
puts @command_class.banner
puts
puts "Options"
puts "======="
puts "-------"
puts
puts @command_class.options
end
Expand Down
10 changes: 9 additions & 1 deletion lib/cocoa_pods/command/install.rb
Expand Up @@ -2,7 +2,15 @@ module Pod
class Command
class Install < Command
def self.banner
'TODO'
%{### Installing dependencies of a spec
$ pod install [NAME]
Downloads all dependencies of the specified podspec file `NAME' and
creates an Xcode Pods library project of the specified podspec file
`NAME'. In case `NAME' is omitted, it defaults to `Podfile' in the
current working directory.
}
end

def self.options
Expand Down

0 comments on commit 422cc7e

Please sign in to comment.