Commit 422cc7eb authored by Eloy Duran's avatar Eloy Duran

Add help banner for the install command.

parent 33262152
......@@ -14,7 +14,7 @@ module Pod
puts @command_class.banner
puts
puts "Options"
puts "======="
puts "-------"
puts
puts @command_class.options
end
......
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment