rbtree 0.4.5 → 0.4.7
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 +6 -0
- data/extconf.rb +0 -8
- data/rbtree.c +76 -94
- data/test.rb +135 -131
- metadata +37 -39
metadata
CHANGED
|
@@ -1,64 +1,62 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rbtree
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.4.
|
|
4
|
+
version: 0.4.7
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
|
-
- OZAWA Takuma
|
|
8
|
-
autorequire:
|
|
7
|
+
- OZAWA Takuma
|
|
9
8
|
bindir: bin
|
|
10
9
|
cert_chain: []
|
|
11
|
-
date:
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
12
11
|
dependencies: []
|
|
13
12
|
description: |
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
email:
|
|
13
|
+
A RBTree is a sorted associative collection that is implemented with a
|
|
14
|
+
Red-Black Tree. It maps keys to values like a Hash, but maintains its
|
|
15
|
+
elements in ascending key order. The interface is the almost identical
|
|
16
|
+
to that of Hash.
|
|
19
17
|
executables: []
|
|
20
18
|
extensions:
|
|
21
|
-
- extconf.rb
|
|
19
|
+
- extconf.rb
|
|
22
20
|
extra_rdoc_files:
|
|
23
|
-
- README
|
|
24
|
-
- rbtree.c
|
|
21
|
+
- README
|
|
22
|
+
- rbtree.c
|
|
25
23
|
files:
|
|
26
|
-
- LICENSE
|
|
27
|
-
- MANIFEST
|
|
28
|
-
- README
|
|
29
|
-
- depend
|
|
30
|
-
- dict.c
|
|
31
|
-
- dict.h
|
|
32
|
-
- extconf.rb
|
|
33
|
-
- rbtree.c
|
|
34
|
-
- test.rb
|
|
35
|
-
homepage:
|
|
24
|
+
- LICENSE
|
|
25
|
+
- MANIFEST
|
|
26
|
+
- README
|
|
27
|
+
- depend
|
|
28
|
+
- dict.c
|
|
29
|
+
- dict.h
|
|
30
|
+
- extconf.rb
|
|
31
|
+
- rbtree.c
|
|
32
|
+
- test.rb
|
|
33
|
+
homepage: "https://github.com/mame/rbtree"
|
|
36
34
|
licenses:
|
|
37
|
-
- MIT
|
|
35
|
+
- MIT
|
|
38
36
|
metadata: {}
|
|
39
|
-
post_install_message:
|
|
40
37
|
rdoc_options:
|
|
41
|
-
- "--title"
|
|
42
|
-
- Ruby/RBTree
|
|
43
|
-
- "--main"
|
|
44
|
-
- README
|
|
45
|
-
- "--exclude"
|
|
46
|
-
-
|
|
38
|
+
- "--title"
|
|
39
|
+
- Ruby/RBTree
|
|
40
|
+
- "--main"
|
|
41
|
+
- README
|
|
42
|
+
- "--exclude"
|
|
43
|
+
- \A(?!README|rbtree\.c).*\z
|
|
47
44
|
require_paths:
|
|
48
|
-
- lib
|
|
45
|
+
- lib
|
|
49
46
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
50
47
|
requirements:
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
48
|
+
-
|
|
49
|
+
- ">="
|
|
50
|
+
- !ruby/object:Gem::Version
|
|
51
|
+
version: "2.1"
|
|
54
52
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
55
53
|
requirements:
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
54
|
+
-
|
|
55
|
+
- ">="
|
|
56
|
+
- !ruby/object:Gem::Version
|
|
57
|
+
version: "0"
|
|
59
58
|
requirements: []
|
|
60
|
-
rubygems_version:
|
|
61
|
-
signing_key:
|
|
59
|
+
rubygems_version: 4.1.0.dev
|
|
62
60
|
specification_version: 4
|
|
63
61
|
summary: A sorted associative collection.
|
|
64
62
|
test_files: []
|