cocoapods-graph 1.0.1 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/exe/cocoapods-graph +0 -6
- data/lib/cocoapods_graph/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e3efceebe8a3046faf8bec4eb90849ada93dad01d072cf0bc0c2fc367c9b584d
|
4
|
+
data.tar.gz: 05cdef5ef7c751165a1f01e3b523a38f642e94c885902d6a1eca4cf61342d9f0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 67a69893c6e966eab14c1276bd4ae8feca035c20c6d3533a86d8be0f71ddbb053e9149d27c06fdb4f66cea0222fc86bfc66dc29a3bca3fb6b98d2a43caedc53a
|
7
|
+
data.tar.gz: '0825ab124cd0971cb346efb8afb404cfa3b43ca050feb90d6217d170bfa8003ba9ed9b4292fb1070c1bd85f3ff30412ec0f8102597c3b672ec22700bd26a925d'
|
data/exe/cocoapods-graph
CHANGED
@@ -17,7 +17,6 @@ module CocoaPodsGraph
|
|
17
17
|
VERSION = CocoaPodsGraph::VERSION
|
18
18
|
|
19
19
|
def self.run
|
20
|
-
puts '[DEBUG] Entered CLI.run'
|
21
20
|
options = {}
|
22
21
|
|
23
22
|
# Print version immediately if requested
|
@@ -68,32 +67,27 @@ module CocoaPodsGraph
|
|
68
67
|
end
|
69
68
|
|
70
69
|
result = CocoaPodsGraph::Generator.parse_lock_file(options[:file])
|
71
|
-
puts "[DEBUG] Parsed result: #{result.inspect}"
|
72
70
|
|
73
71
|
any_output = false
|
74
72
|
if options[:show]
|
75
|
-
puts '[DEBUG] --show option triggered'
|
76
73
|
puts 'Printing dependencies...'
|
77
74
|
result.each(&:print_object)
|
78
75
|
any_output = true
|
79
76
|
end
|
80
77
|
|
81
78
|
if options[:json]
|
82
|
-
puts '[DEBUG] --json option triggered'
|
83
79
|
puts 'Saving JSON file...'
|
84
80
|
CocoaPodsGraph::Generator.save_json_file(result, options[:file])
|
85
81
|
any_output = true
|
86
82
|
end
|
87
83
|
|
88
84
|
if options[:html]
|
89
|
-
puts '[DEBUG] --html option triggered'
|
90
85
|
puts 'Saving HTML file...'
|
91
86
|
CocoaPodsGraph::Generator.save_html_wheel_file(result, options[:file])
|
92
87
|
any_output = true
|
93
88
|
end
|
94
89
|
|
95
90
|
if any_output
|
96
|
-
puts '[DEBUG] Done!'
|
97
91
|
else
|
98
92
|
puts 'You must select an output option (--show | --json | --html)'
|
99
93
|
exit(1)
|