calgo 0.0.2 → 0.0.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/ext/calgo_ext/avltree/extconf.rb +5 -0
- data/ext/calgo_ext/rbtree/extconf.rb +5 -0
- metadata +6 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 94413cd35d0c16287d4d2fca10b3175ac2a80387e06707bff2215800f1217172
|
4
|
+
data.tar.gz: 5d10ce2d64692fb1c001e9f5a192ea5187a3a53b16c5b7597dae27824d53f5a4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 87bfface441f88efd75783b85f9cc13af9230c3822bf13fd771e511b9a3da350ddae8c1959e43fb9d5f4b0c7ca4c0c2da1dda3dbbe952faa538a7a05fa8a0a4e
|
7
|
+
data.tar.gz: e0cef79e5816b49e7f286ffd43594636b602d4d9c4ae699e7bea01529b9c1823b0a3bd5591bc1916cfff59aa88e9a12b66e58df3e0e4619da34e2dfc91967a79
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: calgo
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Donald Dong
|
@@ -56,10 +56,14 @@ description:
|
|
56
56
|
email:
|
57
57
|
executables: []
|
58
58
|
extensions:
|
59
|
+
- ext/calgo_ext/avltree/extconf.rb
|
59
60
|
- ext/calgo_ext/kdtree/extconf.rb
|
61
|
+
- ext/calgo_ext/rbtree/extconf.rb
|
60
62
|
extra_rdoc_files: []
|
61
63
|
files:
|
64
|
+
- ext/calgo_ext/avltree/extconf.rb
|
62
65
|
- ext/calgo_ext/kdtree/extconf.rb
|
66
|
+
- ext/calgo_ext/rbtree/extconf.rb
|
63
67
|
homepage:
|
64
68
|
licenses: []
|
65
69
|
metadata: {}
|
@@ -82,5 +86,5 @@ requirements: []
|
|
82
86
|
rubygems_version: 3.0.8
|
83
87
|
signing_key:
|
84
88
|
specification_version: 4
|
85
|
-
summary: Common algorithms and data structures
|
89
|
+
summary: Common algorithms and data structures as Ruby C extensions
|
86
90
|
test_files: []
|