stool 0.2.15 → 0.2.16
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/stool/Command/Util/LibsCheck.rb +14 -3
- data/lib/stool/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: 6fcf38ae3ca762769d6a87d0ae241d1fb156e71a
|
4
|
+
data.tar.gz: ef99d5883e6c656020775abc010fc935e5776265
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b1c7a404ce36febd82bf980eb3e16b5a12463e23400856c321132a4433733d622abc20146d41b804c1e2872ff9e13941329e59f68f03c423d1737fe9be47b3dc
|
7
|
+
data.tar.gz: 79755efe397243b94fe08d232863dc7b7f2a774022fa34783c13dc252610ba77e8c6143bddaaafa509e1f470a718a53704c2de34a80d538ac3bc471be53b2819
|
@@ -52,14 +52,16 @@ module Stool
|
|
52
52
|
#在表格第一行设置分类
|
53
53
|
sheet1.row(0)[0]="名字"
|
54
54
|
sheet1.row(0)[1]="简介"
|
55
|
-
sheet1.row(0)[
|
56
|
-
|
55
|
+
sheet1.row(0)[2]="主页"
|
56
|
+
sheet1.row(0)[3]="统计时版本"
|
57
57
|
Dir.chdir(repoPath)
|
58
58
|
|
59
59
|
libs = []
|
60
60
|
Dir.entries(repoPath).sort.uniq.each do |dir|
|
61
61
|
unless dir['.']
|
62
|
-
arr = Dir.entries(File.join(repoPath,dir)).
|
62
|
+
arr = Dir.entries(File.join(repoPath,dir)).sort_by do |x|
|
63
|
+
v_to_i x
|
64
|
+
end
|
63
65
|
if arr.last
|
64
66
|
puts
|
65
67
|
fname = Dir.entries(File.join(repoPath,dir,arr.last)).last
|
@@ -77,7 +79,16 @@ module Stool
|
|
77
79
|
sheet1.row(idx+1)[0]= lib.name
|
78
80
|
sheet1.row(idx+1)[1]= lib.summary
|
79
81
|
sheet1.row(idx+1)[2]= lib.homepage
|
82
|
+
sheet1.row(idx+1)[3]= lib.version
|
83
|
+
}
|
84
|
+
end
|
85
|
+
|
86
|
+
def v_to_i (x)
|
87
|
+
a = 0
|
88
|
+
x.split('.').reverse.map.with_index {|x, idx|
|
89
|
+
a = a + x.to_i * 10**idx
|
80
90
|
}
|
91
|
+
a
|
81
92
|
end
|
82
93
|
|
83
94
|
end
|
data/lib/stool/version.rb
CHANGED