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
286762ef
Commit
286762ef
authored
Apr 11, 2013
by
Taras Kalapun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Moved podfile_info cmd to separate file #855
parent
2f7d4c3a
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
90 additions
and
83 deletions
+90
-83
command.rb
lib/cocoapods/command.rb
+1
-0
podfile_info.rb
lib/cocoapods/command/podfile_info.rb
+89
-0
project.rb
lib/cocoapods/command/project.rb
+0
-83
No files found.
lib/cocoapods/command.rb
View file @
286762ef
...
...
@@ -18,6 +18,7 @@ module Pod
require
'cocoapods/command/spec'
require
'cocoapods/command/help'
require
'cocoapods/command/inter_process_communication'
require
'cocoapods/command/podfile_info'
self
.
abstract_command
=
true
self
.
command
=
'pod'
...
...
lib/cocoapods/command/podfile_info.rb
0 → 100644
View file @
286762ef
module
Pod
class
Command
class
PodfileInfo
<
Command
self
.
summary
=
'Shows information on installed Pods.'
self
.
description
=
<<-
DESC
Shows information on installed Pods in current Project.
If optional `PODFILE_PATH` provided, the info will be shown for
that specific Podfile
DESC
self
.
arguments
=
'[PODFILE_PATH]'
def
self
.
options
[
# ["--all", "Show information about all Pods with dependencies that are used in a project"],
[
"--md"
,
"Output information in Markdown format"
]
].
concat
(
super
)
end
def
initialize
(
argv
)
@info_all
=
argv
.
flag?
(
'all'
)
@info_in_md
=
argv
.
flag?
(
'md'
)
@podfile_path
=
argv
.
shift_argument
super
end
def
run
use_podfile
=
(
@podfile_path
||
!
config
.
lockfile
)
if
!
use_podfile
UI
.
puts
"Using lockfile"
if
config
.
verbose?
verify_lockfile_exists!
lockfile
=
config
.
lockfile
# pods = (@info_all) ? lockfile.dependencies : lockfile.pod_names
pods
=
lockfile
.
pod_names
elsif
@podfile_path
podfile
=
Pod
::
Podfile
.
from_file
(
@podfile_path
)
pods
=
pods_from_podfile
(
podfile
)
else
verify_podfile_exists!
podfile
=
config
.
podfile
pods
=
pods_from_podfile
(
podfile
)
end
UI
.
puts
"
\n
Pods used:
\n
"
.
yellow
unless
(
config
.
silent
||
@info_in_md
)
pods_info
(
pods
,
@info_in_md
)
end
def
pods_from_podfile
(
podfile
)
pods
=
[]
podfile
.
root_target_definitions
.
each
{
|
e
|
h
=
e
.
to_hash
;
pods
<<
h
[
'dependencies'
]
if
h
[
'dependencies'
]}
pods
.
flatten!
pods
.
collect!
{
|
pod
|
(
pod
.
is_a?
(
Hash
))
?
pod
.
keys
.
first
:
pod
}
end
def
pods_info_hash
(
pods
,
keys
=
[
:name
,
:homepage
,
:summary
])
pods_info
=
[]
pods
.
each
do
|
pod
|
spec
=
(
Pod
::
SourcesManager
.
search_by_name
(
pod
).
first
rescue
nil
)
if
spec
info
=
{}
keys
.
each
{
|
k
|
info
[
k
]
=
spec
.
specification
.
send
(
k
)
}
pods_info
<<
info
else
end
end
pods_info
end
def
pods_info
(
pods
,
in_md
=
false
)
pods
=
pods_info_hash
(
pods
,
[
:name
,
:homepage
,
:summary
])
pods
.
each
do
|
pod
|
if
in_md
UI
.
puts
"* [
#{
pod
[
:name
]
}
](
#{
pod
[
:homepage
]
}
) -
#{
pod
[
:summary
]
}
"
else
UI
.
puts
"-
#{
pod
[
:name
]
}
-
#{
pod
[
:summary
]
}
"
end
end
end
end
end
end
\ No newline at end of file
lib/cocoapods/command/project.rb
View file @
286762ef
...
...
@@ -85,89 +85,6 @@ module Pod
end
end
class
PodfileInfo
<
Command
self
.
summary
=
'Shows information on installed Pods.'
self
.
description
=
<<-
DESC
Shows information on installed Pods in current Project.
If optional `PODFILE_PATH` provided, the info will be shown for
that specific Podfile
DESC
self
.
arguments
=
'[PODFILE_PATH]'
def
self
.
options
[
# ["--all", "Show information about all Pods with dependencies that are used in a project"],
[
"--md"
,
"Output information in Markdown format"
]
].
concat
(
super
)
end
def
initialize
(
argv
)
@info_all
=
argv
.
flag?
(
'all'
)
@info_in_md
=
argv
.
flag?
(
'md'
)
@podfile_path
=
argv
.
shift_argument
super
end
def
run
use_podfile
=
(
@podfile_path
||
!
config
.
lockfile
)
if
!
use_podfile
UI
.
puts
"Using lockfile"
if
config
.
verbose?
verify_lockfile_exists!
lockfile
=
config
.
lockfile
# pods = (@info_all) ? lockfile.dependencies : lockfile.pod_names
pods
=
lockfile
.
pod_names
elsif
@podfile_path
podfile
=
Pod
::
Podfile
.
from_file
(
@podfile_path
)
pods
=
pods_from_podfile
(
podfile
)
else
verify_podfile_exists!
podfile
=
config
.
podfile
pods
=
pods_from_podfile
(
podfile
)
end
UI
.
puts
"
\n
Pods used:
\n
"
.
yellow
unless
(
config
.
silent
||
@info_in_md
)
pods_info
(
pods
,
@info_in_md
)
end
def
pods_from_podfile
(
podfile
)
pods
=
[]
podfile
.
root_target_definitions
.
each
{
|
e
|
h
=
e
.
to_hash
;
pods
<<
h
[
'dependencies'
]
if
h
[
'dependencies'
]}
pods
.
flatten!
pods
.
collect!
{
|
pod
|
(
pod
.
is_a?
(
Hash
))
?
pod
.
keys
.
first
:
pod
}
end
def
pods_info_hash
(
pods
,
keys
=
[
:name
,
:homepage
,
:summary
])
pods_info
=
[]
pods
.
each
do
|
pod
|
spec
=
(
Pod
::
SourcesManager
.
search_by_name
(
pod
).
first
rescue
nil
)
if
spec
info
=
{}
keys
.
each
{
|
k
|
info
[
k
]
=
spec
.
specification
.
send
(
k
)
}
pods_info
<<
info
else
end
end
pods_info
end
def
pods_info
(
pods
,
in_md
=
false
)
pods
=
pods_info_hash
(
pods
,
[
:name
,
:homepage
,
:summary
])
pods
.
each
do
|
pod
|
if
in_md
UI
.
puts
"* [
#{
pod
[
:name
]
}
](
#{
pod
[
:homepage
]
}
) -
#{
pod
[
:summary
]
}
"
else
UI
.
puts
"-
#{
pod
[
:name
]
}
-
#{
pod
[
:summary
]
}
"
end
end
end
end
end
end
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