fast_trie 0.3.5
Sign up to get free protection for your applications and to get access to all the features.
- data/README.textile +132 -0
- data/VERSION.yml +4 -0
- data/ext/trie/Makefile +149 -0
- data/ext/trie/darray.c +673 -0
- data/ext/trie/darray.h +233 -0
- data/ext/trie/extconf.rb +3 -0
- data/ext/trie/fileutils.c +151 -0
- data/ext/trie/fileutils.h +36 -0
- data/ext/trie/tail.c +340 -0
- data/ext/trie/tail.h +207 -0
- data/ext/trie/trie-private.c +299 -0
- data/ext/trie/trie-private.h +31 -0
- data/ext/trie/trie.c +452 -0
- data/ext/trie/trie.h +40 -0
- data/ext/trie/triedefs.h +73 -0
- data/ext/trie/typedefs.h +113 -0
- data/lib/trie.rb +1 -0
- data/spec/trie_spec.rb +266 -0
- metadata +80 -0
metadata
ADDED
@@ -0,0 +1,80 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: fast_trie
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.3.5
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Tyler McMullen
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
|
12
|
+
date: 2009-05-12 00:00:00 -07:00
|
13
|
+
default_executable:
|
14
|
+
dependencies: []
|
15
|
+
|
16
|
+
description: Ruby Trie based on libdatrie.
|
17
|
+
email: tyler@scribd.com
|
18
|
+
executables: []
|
19
|
+
|
20
|
+
extensions:
|
21
|
+
- ext/trie/extconf.rb
|
22
|
+
extra_rdoc_files: []
|
23
|
+
|
24
|
+
files:
|
25
|
+
- README.textile
|
26
|
+
- VERSION.yml
|
27
|
+
- lib/trie.rb
|
28
|
+
- spec/trie_spec.rb
|
29
|
+
- ext/trie/darray.c
|
30
|
+
- ext/trie/darray.h
|
31
|
+
- ext/trie/extconf.rb
|
32
|
+
- ext/trie/fileutils.c
|
33
|
+
- ext/trie/fileutils.h
|
34
|
+
- ext/trie/Makefile
|
35
|
+
- ext/trie/tail.c
|
36
|
+
- ext/trie/tail.h
|
37
|
+
- ext/trie/trie-private.c
|
38
|
+
- ext/trie/trie-private.h
|
39
|
+
- ext/trie/trie.c
|
40
|
+
- ext/trie/trie.h
|
41
|
+
- ext/trie/triedefs.h
|
42
|
+
- ext/trie/typedefs.h
|
43
|
+
has_rdoc: true
|
44
|
+
homepage: http://github.com/tyler/trie
|
45
|
+
licenses: []
|
46
|
+
|
47
|
+
post_install_message:
|
48
|
+
rdoc_options:
|
49
|
+
- --title
|
50
|
+
- Trie
|
51
|
+
- --line-numbers
|
52
|
+
- --op
|
53
|
+
- rdoc
|
54
|
+
- --main
|
55
|
+
- ext/trie/trie.c
|
56
|
+
- README
|
57
|
+
require_paths:
|
58
|
+
- ext
|
59
|
+
- lib
|
60
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
61
|
+
requirements:
|
62
|
+
- - ">="
|
63
|
+
- !ruby/object:Gem::Version
|
64
|
+
version: "0"
|
65
|
+
version:
|
66
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
67
|
+
requirements:
|
68
|
+
- - ">="
|
69
|
+
- !ruby/object:Gem::Version
|
70
|
+
version: "0"
|
71
|
+
version:
|
72
|
+
requirements: []
|
73
|
+
|
74
|
+
rubyforge_project:
|
75
|
+
rubygems_version: 1.3.5
|
76
|
+
signing_key:
|
77
|
+
specification_version: 2
|
78
|
+
summary: Ruby Trie based on libdatrie.
|
79
|
+
test_files: []
|
80
|
+
|