Commit 945fe5c9 authored by Olivier Halligon's avatar Olivier Halligon

Fixed description to quote arguments so that they get colorized

parent 9aeafe16
...@@ -8,7 +8,7 @@ module Pod ...@@ -8,7 +8,7 @@ module Pod
self.summary = 'Push new specifications to a spec-repo' self.summary = 'Push new specifications to a spec-repo'
self.description = <<-DESC self.description = <<-DESC
Validates `NAME.podspec` or `*.podspec' in the current working dir, Validates `NAME.podspec` or `*.podspec` in the current working dir,
creates a directory and version folder for the pod in the local copy of creates a directory and version folder for the pod in the local copy of
`REPO` (~/.cocoapods/repos/[REPO]), copies the podspec file into the `REPO` (~/.cocoapods/repos/[REPO]), copies the podspec file into the
version directory, and finally it pushes `REPO` to its remote. version directory, and finally it pushes `REPO` to its remote.
......
...@@ -53,13 +53,13 @@ module Pod ...@@ -53,13 +53,13 @@ module Pod
self.summary = 'Validates a spec file.' self.summary = 'Validates a spec file.'
self.description = <<-DESC self.description = <<-DESC
Validates `NAME.podspec'. If a directory is provided it validates Validates `NAME.podspec`. If a directory is provided it validates
the podspec files found, including subfolders. In case the podspec files found, including subfolders. In case
the argument is omitted, it defaults to the current working dir. the argument is omitted, it defaults to the current working dir.
DESC DESC
self.arguments = [ self.arguments = [
CLAide::Argument[%w(NAME.podspec DIRECTORY http://PATH/NAME.podspec ...'), false] CLAide::Argument[%w(NAME.podspec DIRECTORY http://PATH/NAME.podspec ...), false]
] ]
def self.options 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