cocoapods-TSPodfileTimeWatch 0.0.3 → 0.0.4
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/README.md +3 -5
- data/lib/cocoapods-TSPodfileTimeWatch/gem_version.rb +1 -1
- data/lib/cocoapods_plugin.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: 89729e0d0c653130cfbb13c2d89e6b0d7d622dc407509c7e7a05cecaa66ee482
|
4
|
+
data.tar.gz: ffe84060ada4a3cf0885dc06f15d0c2ee9130438f76600cc84a3e7d3c7fd7d68
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1d3bf5efc5d150e3a4a8a1a8fa02d744190a503187be64d6716fb89c82e845998d32925cba5c59d0c75c01ef622526dec926cff88a78109e4aac308123bccfc8
|
7
|
+
data.tar.gz: 19ff0979aff5e38ec424bcd5b26f423b2eac5d827e90caeebf62dd75b638897fd8390a60c55d491a8fb8a2ad069592f28c7865a527f49005c92ed206f3cd01d7
|
data/README.md
CHANGED
@@ -1,11 +1,9 @@
|
|
1
1
|
# cocoapods-TSPodfileTimeWatch
|
2
2
|
|
3
|
-
A description of cocoapods-TSPodfileTimeWatch.
|
4
3
|
|
5
|
-
## Installation
|
6
4
|
|
7
|
-
|
5
|
+
## 安装:
|
8
6
|
|
9
|
-
|
7
|
+
$ gem install cocoapods-TSPodfileTimeWatch
|
10
8
|
|
11
|
-
|
9
|
+
可以通过pod install/update --verbose获取每个pod的下载耗时(S),git clone文件大小(M),cache文件大小(M),大小差值(M)。如果大小差值过大则存在优化空间。具体的统计数据请在#{Dir.home}/.AllPodsTimeAndSize.csv中查看。
|
data/lib/cocoapods_plugin.rb
CHANGED
@@ -33,7 +33,7 @@ module CocoapodsTSPodfileTimeWatch
|
|
33
33
|
puts "\e[31mCocoapodsTSPodfileTimeWatch gitAllSize: #{$gitAllSize}M\e[0m"
|
34
34
|
puts "\e[31mCocoapodsTSPodfileTimeWatch cloneAllTime: #{$cloneAllTime}S\e[0m"
|
35
35
|
if $pluginIsVerbose == true
|
36
|
-
puts "\e[31m
|
36
|
+
puts "\e[31m具体的统计数据请在#{Dir.home}/.AllPodsTimeAndSize.csv中查看\e[0m"
|
37
37
|
end
|
38
38
|
end
|
39
39
|
|