cocoapods-timeconsuming 0.0.4 → 0.0.5
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/lib/cocoapods-timeconsuming.rb +59 -1
- data/lib/cocoapods-timeconsuming/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4b1bcf00c1977b36f70e8a0e87a1fe2582c11dde
|
4
|
+
data.tar.gz: 3f688892510a4d1b319984d7a123df4153f47ebf
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
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
|
|