rbtree 0.2.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.
- data/ChangeLog +425 -0
- data/LICENSE +22 -0
- data/MANIFEST +10 -0
- data/README +78 -0
- data/depend +2 -0
- data/dict.c +1216 -0
- data/dict.h +123 -0
- data/extconf.rb +34 -0
- data/rbtree.c +1691 -0
- data/test.rb +895 -0
- metadata +58 -0
metadata
ADDED
@@ -0,0 +1,58 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
rubygems_version: 0.9.4
|
3
|
+
specification_version: 1
|
4
|
+
name: rbtree
|
5
|
+
version: !ruby/object:Gem::Version
|
6
|
+
version: 0.2.0
|
7
|
+
date: 2008-02-05 00:00:00 +09:00
|
8
|
+
summary: A sorted associative collection.
|
9
|
+
require_paths:
|
10
|
+
- .
|
11
|
+
email: burningdowntheopera at yahoo dot co dot jp
|
12
|
+
homepage: http://www.geocities.co.jp/SiliconValley-PaloAlto/3388/rbtree/README.html
|
13
|
+
rubyforge_project:
|
14
|
+
description: RBTree is a sorted associative collection using Red-Black Tree as the internal data structure. The elements of RBTree are ordered and the interface is the almost same as Hash, so simply you can consider RBTree sorted Hash.
|
15
|
+
autorequire:
|
16
|
+
default_executable:
|
17
|
+
bindir: bin
|
18
|
+
has_rdoc: true
|
19
|
+
required_ruby_version: !ruby/object:Gem::Version::Requirement
|
20
|
+
requirements:
|
21
|
+
- - ">"
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: 0.0.0
|
24
|
+
version:
|
25
|
+
platform: ruby
|
26
|
+
signing_key:
|
27
|
+
cert_chain:
|
28
|
+
post_install_message:
|
29
|
+
authors:
|
30
|
+
- OZAWA Takuma
|
31
|
+
files:
|
32
|
+
- ChangeLog
|
33
|
+
- LICENSE
|
34
|
+
- MANIFEST
|
35
|
+
- README
|
36
|
+
- depend
|
37
|
+
- dict.c
|
38
|
+
- dict.h
|
39
|
+
- extconf.rb
|
40
|
+
- rbtree.c
|
41
|
+
- test.rb
|
42
|
+
test_files:
|
43
|
+
- test.rb
|
44
|
+
rdoc_options:
|
45
|
+
- --main
|
46
|
+
- RBTree
|
47
|
+
- --exclude
|
48
|
+
- .*
|
49
|
+
extra_rdoc_files:
|
50
|
+
- rbtree.c
|
51
|
+
executables: []
|
52
|
+
|
53
|
+
extensions:
|
54
|
+
- extconf.rb
|
55
|
+
requirements: []
|
56
|
+
|
57
|
+
dependencies: []
|
58
|
+
|