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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 87ce71d8fcc4286cb5fa84fd4a7ca9397703028e
4
- data.tar.gz: c3e7e54042e2c04271ba7642cbb16725fe661e86
3
+ metadata.gz: 6fcf38ae3ca762769d6a87d0ae241d1fb156e71a
4
+ data.tar.gz: ef99d5883e6c656020775abc010fc935e5776265
5
5
  SHA512:
6
- metadata.gz: 1665e260f4aed0db0961103fa93350c6fcc13e43e714596ef0abf61fc0fb4c1891a1166860e90492f7288764eacb9bf9b4202394f6617f4bdd283e82b6a4d3e7
7
- data.tar.gz: 116425580ececb65cb91f9d163c1e5bad396cf7215f8f3f317ed44e62b07ce5c01a366572b3872c5be6a9df9d03a2fb557cd954e26e258f295536af422769a5a
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)[1]="主页"
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)).sort
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
@@ -1,3 +1,3 @@
1
1
  module Stool
2
- VERSION = "0.2.15"
2
+ VERSION = "0.2.16"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: stool
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.15
4
+ version: 0.2.16
5
5
  platform: ruby
6
6
  authors:
7
7
  - Fiend