whistlepig 0.1
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/README +86 -0
- data/ext/whistlepig/defaults.h +28 -0
- data/ext/whistlepig/entry.c +181 -0
- data/ext/whistlepig/entry.h +66 -0
- data/ext/whistlepig/error.c +24 -0
- data/ext/whistlepig/error.h +94 -0
- data/ext/whistlepig/extconf.rb +6 -0
- data/ext/whistlepig/index.c +294 -0
- data/ext/whistlepig/index.h +88 -0
- data/ext/whistlepig/khash.h +316 -0
- data/ext/whistlepig/mmap-obj.c +76 -0
- data/ext/whistlepig/mmap-obj.h +52 -0
- data/ext/whistlepig/query-parser.c +37 -0
- data/ext/whistlepig/query-parser.h +25 -0
- data/ext/whistlepig/query-parser.lex.c +2249 -0
- data/ext/whistlepig/query-parser.lex.h +359 -0
- data/ext/whistlepig/query-parser.tab.c +1757 -0
- data/ext/whistlepig/query-parser.tab.h +85 -0
- data/ext/whistlepig/query.c +194 -0
- data/ext/whistlepig/query.h +78 -0
- data/ext/whistlepig/search.c +746 -0
- data/ext/whistlepig/search.h +76 -0
- data/ext/whistlepig/segment.c +615 -0
- data/ext/whistlepig/segment.h +137 -0
- data/ext/whistlepig/stringmap.c +278 -0
- data/ext/whistlepig/stringmap.h +82 -0
- data/ext/whistlepig/stringpool.c +44 -0
- data/ext/whistlepig/stringpool.h +58 -0
- data/ext/whistlepig/termhash.c +294 -0
- data/ext/whistlepig/termhash.h +79 -0
- data/ext/whistlepig/tokenizer.lex.c +2263 -0
- data/ext/whistlepig/tokenizer.lex.h +360 -0
- data/ext/whistlepig/whistlepig.h +15 -0
- data/ext/whistlepig/whistlepigc.c +537 -0
- data/lib/whistlepig.rb +119 -0
- metadata +103 -0
metadata
ADDED
@@ -0,0 +1,103 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: whistlepig
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
prerelease: false
|
5
|
+
segments:
|
6
|
+
- 0
|
7
|
+
- 1
|
8
|
+
version: "0.1"
|
9
|
+
platform: ruby
|
10
|
+
authors:
|
11
|
+
- William Morgan
|
12
|
+
autorequire:
|
13
|
+
bindir: bin
|
14
|
+
cert_chain: []
|
15
|
+
|
16
|
+
date: 2011-02-08 21:42:39 -08:00
|
17
|
+
default_executable:
|
18
|
+
dependencies: []
|
19
|
+
|
20
|
+
description: Whistlepig is a minimalist realtime full-text search index. Its goal is to be as small and minimally-featured as possible, while still remaining useful, performant and scalable to large corpora. If you want realtime full-text search without the frills, Whistlepig may be for you.
|
21
|
+
email: wmorgan-whistlepig-gemspec@masanjin.net
|
22
|
+
executables: []
|
23
|
+
|
24
|
+
extensions:
|
25
|
+
- ext/whistlepig/extconf.rb
|
26
|
+
extra_rdoc_files:
|
27
|
+
- README
|
28
|
+
- ext/whistlepig/whistlepigc.c
|
29
|
+
files:
|
30
|
+
- README
|
31
|
+
- ext/whistlepig/extconf.rb
|
32
|
+
- lib/whistlepig.rb
|
33
|
+
- ext/whistlepig/query-parser.lex.h
|
34
|
+
- ext/whistlepig/entry.h
|
35
|
+
- ext/whistlepig/whistlepigc.c
|
36
|
+
- ext/whistlepig/stringmap.c
|
37
|
+
- ext/whistlepig/tokenizer.lex.h
|
38
|
+
- ext/whistlepig/whistlepig.h
|
39
|
+
- ext/whistlepig/error.c
|
40
|
+
- ext/whistlepig/stringmap.h
|
41
|
+
- ext/whistlepig/query-parser.lex.c
|
42
|
+
- ext/whistlepig/defaults.h
|
43
|
+
- ext/whistlepig/tokenizer.lex.c
|
44
|
+
- ext/whistlepig/termhash.c
|
45
|
+
- ext/whistlepig/query-parser.h
|
46
|
+
- ext/whistlepig/index.c
|
47
|
+
- ext/whistlepig/stringpool.c
|
48
|
+
- ext/whistlepig/query.h
|
49
|
+
- ext/whistlepig/query-parser.c
|
50
|
+
- ext/whistlepig/stringpool.h
|
51
|
+
- ext/whistlepig/mmap-obj.c
|
52
|
+
- ext/whistlepig/search.c
|
53
|
+
- ext/whistlepig/termhash.h
|
54
|
+
- ext/whistlepig/query.c
|
55
|
+
- ext/whistlepig/query-parser.tab.h
|
56
|
+
- ext/whistlepig/khash.h
|
57
|
+
- ext/whistlepig/query-parser.tab.c
|
58
|
+
- ext/whistlepig/entry.c
|
59
|
+
- ext/whistlepig/index.h
|
60
|
+
- ext/whistlepig/segment.h
|
61
|
+
- ext/whistlepig/mmap-obj.h
|
62
|
+
- ext/whistlepig/segment.c
|
63
|
+
- ext/whistlepig/search.h
|
64
|
+
- ext/whistlepig/error.h
|
65
|
+
has_rdoc: true
|
66
|
+
homepage: http://masanjin.net/whistlepig
|
67
|
+
licenses: []
|
68
|
+
|
69
|
+
post_install_message:
|
70
|
+
rdoc_options:
|
71
|
+
- -c
|
72
|
+
- utf8
|
73
|
+
- --main
|
74
|
+
- README
|
75
|
+
- --title
|
76
|
+
- Whistlepig
|
77
|
+
require_paths:
|
78
|
+
- lib
|
79
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
80
|
+
none: false
|
81
|
+
requirements:
|
82
|
+
- - ">="
|
83
|
+
- !ruby/object:Gem::Version
|
84
|
+
segments:
|
85
|
+
- 0
|
86
|
+
version: "0"
|
87
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
88
|
+
none: false
|
89
|
+
requirements:
|
90
|
+
- - ">="
|
91
|
+
- !ruby/object:Gem::Version
|
92
|
+
segments:
|
93
|
+
- 0
|
94
|
+
version: "0"
|
95
|
+
requirements: []
|
96
|
+
|
97
|
+
rubyforge_project:
|
98
|
+
rubygems_version: 1.3.7
|
99
|
+
signing_key:
|
100
|
+
specification_version: 3
|
101
|
+
summary: a minimalist realtime full-text search index
|
102
|
+
test_files: []
|
103
|
+
|