Commit f2c30689 authored by Eloy Duran's avatar Eloy Duran

Fix help banners

parent 6cf539af
...@@ -6,18 +6,19 @@ module Pod ...@@ -6,18 +6,19 @@ module Pod
def self.banner def self.banner
%{Managing spec-repos: %{Managing spec-repos:
$ pod help repo $ pod repo add NAME URL
pod repo add NAME URL Clones `URL' in the local spec-repos directory at `~/.cocoapods'. The
Clones `URL' in the local spec-repos directory at `~/.cocoapods'. The remote can later be referred to by `NAME'.
remote can later be referred to by `NAME'.
pod repo update NAME $ pod repo update NAME
Updates the local clone of the spec-repo `NAME'. If `NAME' is omitted
this will update all spec-repos in `~/.cocoapods'.
pod repo set-url NAME URL Updates the local clone of the spec-repo `NAME'. If `NAME' is omitted
Updates the remote `URL' of the spec-repo `NAME'.} this will update all spec-repos in `~/.cocoapods'.
$ pod repo set-url NAME URL
Updates the remote `URL' of the spec-repo `NAME'.}
end end
extend Executable extend Executable
......
...@@ -4,14 +4,14 @@ module Pod ...@@ -4,14 +4,14 @@ module Pod
def self.banner def self.banner
%{Managing PodSpec files: %{Managing PodSpec files:
$ pod help spec $ pod spec create NAME
pod spec create NAME Creates a PodSpec, in the current working dir, called `NAME.podspec'.
Creates a PodSpec, in the current working dir, called `NAME.podspec'.
pod spec lint NAME.podspec $ pod spec lint NAME.podspec
Validates `NAME.podspec'. In case `NAME.podspec' is omitted, it defaults
to `*.podspec' in the current working dir.} Validates `NAME.podspec'. In case `NAME.podspec' is omitted, it defaults
to `*.podspec' in the current working dir.}
end end
def initialize(argv) def initialize(argv)
......
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