cocoapods-entitlements-statistics 0.1.2 → 0.1.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 806c4c679346c360dc216008564012f9b4d598c3c130995c1408938cc6355e41
4
- data.tar.gz: 795046f116d18b94a2c8a9e67c8e55127216feeb117029ebb931df5b2b017260
3
+ metadata.gz: eaeda8b243024de3be7ab0775c9a35c1e83452229929b2fbe8e4b7ff5e9cad39
4
+ data.tar.gz: a330a04873df0de23234a552af8175bf91faa9dcecb67a2210ca296af84f5df0
5
5
  SHA512:
6
- metadata.gz: 78dfb04aa4b57b0f98bc92ed2c9d9f3d90b08b8daf1aaf31e646a0bf6b1f98bef1433187bf5b728ce4e9c457bf267516e00be65d7f9f2acabf0af1355de548fe
7
- data.tar.gz: 8e0d8151c7e417b8d8d9fa1ecdef3590e3b8699a995b22eba06c7900267c41db26f77a09ed7ac5bd93ab69bda9e384e98d7409890ab1d9888149b447bf05bfa1
6
+ metadata.gz: 3d6785481dbafb5f8ecab43175c5bbd76519c40a5ccb62a542514b2fa82a3bb32349d29e35757a196516668ccb104476ff7921d3bc3ba5ed0b0fa54640fb1e53
7
+ data.tar.gz: a4548ac5474947ac72c58d844ae63f055604afaf8dc12920afb8fde99ebc61a01f4fef6a6759e80274d315ee4e65049a866408e8537e7fb00a85d0acc3bdfca9
@@ -35,7 +35,7 @@ module AppEntitlementsStatistics
35
35
 
36
36
  capabilities_diff = analyze_diff(pre_entitlements,cur_entitlements)
37
37
  report_path = generate(capabilities_diff)
38
- puts report_path
38
+ # puts report_path
39
39
  report_path
40
40
  end
41
41
 
@@ -45,7 +45,7 @@ module AppEntitlementsStatistics
45
45
  output += "\n\n\n#{@versions.first} entitlements list: "
46
46
  output += "\n" + read_each_line(@versions.first)
47
47
  output += "\n" + "----------------------------------------"
48
- puts "singleGenerate"
48
+ # puts "singleGenerate"
49
49
  report_path = report_file_name(path: @report_path)
50
50
  File.open(report_path, 'w') { |file|
51
51
  file.write(output)
@@ -67,7 +67,7 @@ module AppEntitlementsStatistics
67
67
  output += "\n" + "----------------------------------------"
68
68
  output += "\n\n#{pre_version} entitlements list: "
69
69
  output += "\n" + read_each_line(pre_version)
70
- puts "generate"
70
+ # puts "generate"
71
71
  report_path = report_file_name(path: @report_path)
72
72
  File.open(report_path, 'w') { |file|
73
73
  file.write(output)
@@ -34,10 +34,7 @@ module AppEntitlementsStatistics
34
34
  end
35
35
 
36
36
  def report_file_name(path: nil)
37
- puts "report_file_name"
38
- puts path.class
39
37
  path = path ? "#{path}/entitlements_statistics" : "entitlements_statistics"
40
- puts path
41
38
  FileUtils.mkdir_p(path) unless File.exists?(path)
42
39
  file_name = "#{path}/analyze_report"
43
40
  file_name
@@ -1,3 +1,3 @@
1
1
  module CocoapodsEntitlementsStatistics
2
- VERSION = "0.1.2"
2
+ VERSION = "0.1.5"
3
3
  end
@@ -23,7 +23,6 @@ module CocoapodsEntitlementsStatistics
23
23
  extracter.extract_update
24
24
 
25
25
  report_path = (!options.nil? && options.has_key?("report_path")) ? options[:report_path] : nil
26
- puts "xx=>report_path: #{report_path}"
27
26
  if report_path.nil?
28
27
  analyzer = AppEntitlementsStatistics::Analyzer.new(project_info.product_bundle_identifier )
29
28
  else
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cocoapods-entitlements-statistics
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - bin