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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c72d2d884702cb1fddd70b6656d43a4eb6e8870a855647113fb41c2c703ac6e3
4
- data.tar.gz: ecebd44a97afd21cebbb4b1a8b966113546a2b05834e860a5e60d391c036f8c3
3
+ metadata.gz: e3efceebe8a3046faf8bec4eb90849ada93dad01d072cf0bc0c2fc367c9b584d
4
+ data.tar.gz: 05cdef5ef7c751165a1f01e3b523a38f642e94c885902d6a1eca4cf61342d9f0
5
5
  SHA512:
6
- metadata.gz: 6a200503671283029f9faff63e00beaad6fcee2c93e51560bee947b179796fb4fd11882853af645097fc4d3393acc59bf35cbfb54c718fc059df825758bbcf3e
7
- data.tar.gz: 59b30136c85c63d777cc341b333a358402f4fa37575c149da6925129e2715d4bb7a7325480e384839c94e96c428e55a01b5c102fbf4f42585db85c0633a9a9c2
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)
@@ -1,3 +1,3 @@
1
1
  module CocoaPodsGraph
2
- VERSION = "1.0.1"
2
+ VERSION = "1.0.2"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cocoapods-graph
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Erick Jung