Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
C
cocoapods
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
gengmeiios
cocoapods
Commits
eb451c42
Commit
eb451c42
authored
Jan 21, 2016
by
Nate West
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Audit CLI help for period consistency
parent
289ca870
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
13 additions
and
13 deletions
+13
-13
init.rb
lib/cocoapods/command/init.rb
+1
-1
inter_process_communication.rb
lib/cocoapods/command/inter_process_communication.rb
+5
-5
add.rb
lib/cocoapods/command/repo/add.rb
+1
-1
lint.rb
lib/cocoapods/command/repo/lint.rb
+1
-1
update.rb
lib/cocoapods/command/repo/update.rb
+1
-1
cat.rb
lib/cocoapods/command/spec/cat.rb
+1
-1
edit.rb
lib/cocoapods/command/spec/edit.rb
+1
-1
lint.rb
lib/cocoapods/command/spec/lint.rb
+1
-1
which.rb
lib/cocoapods/command/spec/which.rb
+1
-1
No files found.
lib/cocoapods/command/init.rb
View file @
eb451c42
...
...
@@ -4,7 +4,7 @@ require 'active_support/core_ext/string/strip'
module
Pod
class
Command
class
Init
<
Command
self
.
summary
=
'Generate a Podfile for the current directory
.
'
self
.
summary
=
'Generate a Podfile for the current directory'
self
.
description
=
<<-
DESC
Creates a Podfile for the current directory if none currently exists. If
an `XCODEPROJ` project file is specified or if there is only a single
...
...
lib/cocoapods/command/inter_process_communication.rb
View file @
eb451c42
...
...
@@ -11,7 +11,7 @@ module Pod
#-----------------------------------------------------------------------#
class
Spec
<
IPC
self
.
summary
=
'Converts a podspec to JSON
.
'
self
.
summary
=
'Converts a podspec to JSON'
self
.
description
=
'Converts a podspec to JSON and prints it to STDOUT.'
self
.
arguments
=
[
CLAide
::
Argument
.
new
(
'PATH'
,
true
),
...
...
@@ -37,7 +37,7 @@ module Pod
#-----------------------------------------------------------------------#
class
Podfile
<
IPC
self
.
summary
=
'Converts a Podfile to YAML
.
'
self
.
summary
=
'Converts a Podfile to YAML'
self
.
description
=
'Converts a Podfile to YAML and prints it to STDOUT.'
self
.
arguments
=
[
CLAide
::
Argument
.
new
(
'PATH'
,
true
),
...
...
@@ -63,7 +63,7 @@ module Pod
#-----------------------------------------------------------------------#
class
List
<
IPC
self
.
summary
=
'Lists the specifications known to CocoaPods
.
'
self
.
summary
=
'Lists the specifications known to CocoaPods'
self
.
description
=
<<-
DESC
Prints to STDOUT a YAML dictionary where the keys are the name of the
specifications and each corresponding value is a dictionary with
...
...
@@ -101,7 +101,7 @@ module Pod
#-----------------------------------------------------------------------#
class
UpdateSearchIndex
<
IPC
self
.
summary
=
'Updates the search index
.
'
self
.
summary
=
'Updates the search index'
self
.
description
=
<<-
DESC
Updates the search index and prints its path to standard output.
The search index is a YAML encoded dictionary where the keys
...
...
@@ -125,7 +125,7 @@ module Pod
class
Repl
<
IPC
END_OF_OUTPUT_SIGNAL
=
"
\n\r
"
self
.
summary
=
'The repl listens to commands on standard input
.
'
self
.
summary
=
'The repl listens to commands on standard input'
self
.
description
=
<<-
DESC
The repl listens to commands on standard input and prints their
result to standard output.
...
...
lib/cocoapods/command/repo/add.rb
View file @
eb451c42
...
...
@@ -2,7 +2,7 @@ module Pod
class
Command
class
Repo
<
Command
class
Add
<
Repo
self
.
summary
=
'Add a spec repo
.
'
self
.
summary
=
'Add a spec repo'
self
.
description
=
<<-
DESC
Clones `URL` in the local spec-repos directory at `~/.cocoapods/repos/`. The
...
...
lib/cocoapods/command/repo/lint.rb
View file @
eb451c42
...
...
@@ -2,7 +2,7 @@ module Pod
class
Command
class
Repo
<
Command
class
Lint
<
Repo
self
.
summary
=
'Validates all specs in a repo
.
'
self
.
summary
=
'Validates all specs in a repo'
self
.
description
=
<<-
DESC
Lints the spec-repo `NAME`. If a directory is provided it is assumed
...
...
lib/cocoapods/command/repo/update.rb
View file @
eb451c42
...
...
@@ -2,7 +2,7 @@ module Pod
class
Command
class
Repo
<
Command
class
Update
<
Repo
self
.
summary
=
'Update a spec repo
.
'
self
.
summary
=
'Update a spec repo'
self
.
description
=
<<-
DESC
Updates the local clone of the spec-repo `NAME`. If `NAME` is omitted
...
...
lib/cocoapods/command/spec/cat.rb
View file @
eb451c42
...
...
@@ -2,7 +2,7 @@ module Pod
class
Command
class
Spec
<
Command
class
Cat
<
Spec
self
.
summary
=
'Prints a spec file
.
'
self
.
summary
=
'Prints a spec file'
self
.
description
=
<<-
DESC
Prints the content of the podspec(s) whose name matches `QUERY` to standard output.
...
...
lib/cocoapods/command/spec/edit.rb
View file @
eb451c42
...
...
@@ -2,7 +2,7 @@ module Pod
class
Command
class
Spec
<
Command
class
Edit
<
Spec
self
.
summary
=
'Edit a spec file
.
'
self
.
summary
=
'Edit a spec file'
self
.
description
=
<<-
DESC
Opens the podspec matching `QUERY` to be edited.
...
...
lib/cocoapods/command/spec/lint.rb
View file @
eb451c42
...
...
@@ -2,7 +2,7 @@ module Pod
class
Command
class
Spec
<
Command
class
Lint
<
Spec
self
.
summary
=
'Validates a spec file
.
'
self
.
summary
=
'Validates a spec file'
self
.
description
=
<<-
DESC
Validates `NAME.podspec`. If a `DIRECTORY` is provided, it validates
...
...
lib/cocoapods/command/spec/which.rb
View file @
eb451c42
...
...
@@ -2,7 +2,7 @@ module Pod
class
Command
class
Spec
<
Command
class
Which
<
Spec
self
.
summary
=
'Prints the path of the given spec
.
'
self
.
summary
=
'Prints the path of the given spec'
self
.
description
=
<<-
DESC
Prints the path of the .podspec file(s) whose name matches `QUERY`
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment