rbtree3 0.5.0
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 +7 -0
- data/ChangeLog +492 -0
- data/LICENSE +22 -0
- data/README +106 -0
- data/dict.c +1216 -0
- data/dict.h +123 -0
- data/extconf.rb +13 -0
- data/rbtree.c +1701 -0
- data/test.rb +950 -0
- metadata +64 -0
metadata
ADDED
@@ -0,0 +1,64 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: rbtree3
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.5.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Kyrylo Silin
|
8
|
+
- OZAWA Takuma
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2019-02-07 00:00:00.000000000 Z
|
13
|
+
dependencies: []
|
14
|
+
description: |-
|
15
|
+
A RBTree is a sorted associative collection that is implemented with a Red-Black Tree. It maps keys to values like a Hash, but maintains its elements in ascending key order. The interface is the almost identical to that of Hash.
|
16
|
+
|
17
|
+
This is a fork of the original gem that fixes various bugs on Ruby 2.3+.
|
18
|
+
email:
|
19
|
+
- silin@kyrylo.org
|
20
|
+
executables: []
|
21
|
+
extensions:
|
22
|
+
- extconf.rb
|
23
|
+
extra_rdoc_files: []
|
24
|
+
files:
|
25
|
+
- "./dict.c"
|
26
|
+
- "./dict.h"
|
27
|
+
- "./extconf.rb"
|
28
|
+
- "./rbtree.c"
|
29
|
+
- "./test.rb"
|
30
|
+
- ChangeLog
|
31
|
+
- LICENSE
|
32
|
+
- README
|
33
|
+
- extconf.rb
|
34
|
+
- test.rb
|
35
|
+
homepage: https://github.com/kyrylo/rbtree3
|
36
|
+
licenses:
|
37
|
+
- MIT
|
38
|
+
metadata:
|
39
|
+
homepage_uri: https://github.com/kyrylo/rbtree3
|
40
|
+
source_code_uri: https://github.com/kyrylo/rbtree3
|
41
|
+
changelog_uri: https://github.com/kyrylo/rbtree3/blob/master/ChangeLog
|
42
|
+
post_install_message:
|
43
|
+
rdoc_options: []
|
44
|
+
require_paths:
|
45
|
+
- "./"
|
46
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
47
|
+
requirements:
|
48
|
+
- - ">="
|
49
|
+
- !ruby/object:Gem::Version
|
50
|
+
version: '2.1'
|
51
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
52
|
+
requirements:
|
53
|
+
- - ">="
|
54
|
+
- !ruby/object:Gem::Version
|
55
|
+
version: '0'
|
56
|
+
requirements: []
|
57
|
+
rubyforge_project:
|
58
|
+
rubygems_version: 2.6.13
|
59
|
+
signing_key:
|
60
|
+
specification_version: 4
|
61
|
+
summary: A RBTree is a sorted associative collection that is implemented with a Red-Black
|
62
|
+
Tree.
|
63
|
+
test_files:
|
64
|
+
- test.rb
|