cocoapods-timeconsuming 0.0.4 → 0.0.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
  SHA1:
3
- metadata.gz: c36eb6a9f80aad425c2ed1f66d3698928e985752
4
- data.tar.gz: e2991879dac6018be7a31ba1225cd154dfdeeb98
3
+ metadata.gz: 4b1bcf00c1977b36f70e8a0e87a1fe2582c11dde
4
+ data.tar.gz: 3f688892510a4d1b319984d7a123df4153f47ebf
5
5
  SHA512:
6
- metadata.gz: fd4af33a3a88339de9fd3e665181e54333ed3d68ec3a0d9c3186687569c08350d30d5e0a59b0e4d5917c7e5d449dcbc351321888a1447b2253cc6eb7c40495a0
7
- data.tar.gz: e16ac83c49945142a6c6fef0a74aa49155933480a6058d57f0d42aede440e3c12cb992baa8668032adf790a6589ad791376e2899ddcfb0e0e761e7d608009bd8
6
+ metadata.gz: 93f5e6fcbb5d673f2fd16e6302dbf247b61f55e3cff9b7f215dc97067fe8c5b83b03fb26d4c9381c9627a38590b7e921b51ec289330184588359b0420142510b
7
+ data.tar.gz: 500e74a0a1e7eb46e287c39fb340eaed798f72703f1761d7645d9fbe61b06862a9c4658761ad690f5ac634fc568606c084815a81d24324411902d47bbd833d98
@@ -52,7 +52,64 @@ if Pod::VERSION=='1.0.0'
52
52
  end
53
53
  end
54
54
  end
55
- elsif (Pod::VERSION=='0.35.0' or Pod::VERSION=='0.39.0')
55
+ elsif Pod::VERSION=='0.39.0'
56
+ module Pod
57
+ class Installer
58
+ def install!
59
+ start_time = Time.new
60
+ prepare
61
+ cost_time = Time.new.to_i-start_time.to_i
62
+ p 'prepare cost: '+cost_time.to_s
63
+ end_time = Time.new
64
+
65
+ resolve_dependencies
66
+ cost_time = Time.new.to_i-end_time.to_i
67
+ p 'resolve_dependencies cost: '+cost_time.to_s
68
+ end_time = Time.new
69
+
70
+ download_dependencies
71
+ cost_time = Time.new.to_i-end_time.to_i
72
+ p 'download_dependencies cost: '+cost_time.to_s
73
+ end_time = Time.new
74
+
75
+ determine_dependency_product_types
76
+ cost_time = Time.new.to_i-end_time.to_i
77
+ p 'determine_dependency_product_types cost: '+cost_time.to_s
78
+ end_time = Time.new
79
+
80
+ verify_no_duplicate_framework_names
81
+ cost_time = Time.new.to_i-end_time.to_i
82
+ p 'verify_no_duplicate_framework_names cost: '+cost_time.to_s
83
+ end_time = Time.new
84
+
85
+ verify_no_static_framework_transitive_dependencies
86
+ cost_time = Time.new.to_i-end_time.to_i
87
+ p 'verify_no_static_framework_transitive_dependencies cost: '+cost_time.to_s
88
+ end_time = Time.new
89
+
90
+ verify_framework_usage
91
+ cost_time = Time.new.to_i-end_time.to_i
92
+ p 'verify_framework_usage cost: '+cost_time.to_s
93
+
94
+ generate_pods_project
95
+ cost_time = Time.new.to_i-end_time.to_i
96
+ p 'generate_pods_project cost: '+cost_time.to_s
97
+
98
+
99
+ integrate_user_project if config.integrate_targets?
100
+ cost_time = Time.new.to_i-end_time.to_i
101
+ p 'integrate_targets? cost: '+cost_time.to_s
102
+
103
+ perform_post_install_actions
104
+ cost_time = Time.new.to_i-end_time.to_i
105
+ p 'perform_post_install_actions cost: '+cost_time.to_s
106
+
107
+ p 'total cost: '+(Time.new.to_i-start_time.to_i).to_s
108
+
109
+ end
110
+ end
111
+ end
112
+ elsif Pod::VERSION=='0.35.0'
56
113
  module Pod
57
114
  class Installer
58
115
  def install!
@@ -90,5 +147,6 @@ elsif (Pod::VERSION=='0.35.0' or Pod::VERSION=='0.39.0')
90
147
  end
91
148
  end
92
149
 
150
+
93
151
  end
94
152
 
@@ -1,3 +1,3 @@
1
1
  module CocoapodsTimeconsuming
2
- VERSION = "0.0.4"
2
+ VERSION = "0.0.5"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cocoapods-timeconsuming
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.4
4
+ version: 0.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - 晨燕