whistlepig 0.5 → 0.6
Sign up to get free protection for your applications and to get access to all the features.
- data/README +2 -2
- data/ext/whistlepig/query-parser.lex.c +283 -174
- data/ext/whistlepig/tokenizer.lex.c +613 -263
- metadata +37 -24
metadata
CHANGED
@@ -1,29 +1,33 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: whistlepig
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
hash: 7
|
5
5
|
prerelease:
|
6
|
+
segments:
|
7
|
+
- 0
|
8
|
+
- 6
|
9
|
+
version: "0.6"
|
6
10
|
platform: ruby
|
7
|
-
authors:
|
11
|
+
authors:
|
8
12
|
- William Morgan
|
9
13
|
autorequire:
|
10
14
|
bindir: bin
|
11
15
|
cert_chain: []
|
12
|
-
|
16
|
+
|
17
|
+
date: 2011-04-28 21:39:58 -07:00
|
13
18
|
default_executable:
|
14
19
|
dependencies: []
|
15
|
-
|
16
|
-
|
17
|
-
performant and scalable to large corpora. If you want realtime full-text search
|
18
|
-
without the frills, Whistlepig may be for you.
|
20
|
+
|
21
|
+
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.
|
19
22
|
email: wmorgan-whistlepig-gemspec@masanjin.net
|
20
23
|
executables: []
|
21
|
-
|
24
|
+
|
25
|
+
extensions:
|
22
26
|
- ext/whistlepig/extconf.rb
|
23
|
-
extra_rdoc_files:
|
27
|
+
extra_rdoc_files:
|
24
28
|
- README
|
25
29
|
- ext/whistlepig/whistlepigc.c
|
26
|
-
files:
|
30
|
+
files:
|
27
31
|
- README
|
28
32
|
- ext/whistlepig/extconf.rb
|
29
33
|
- lib/whistlepig.rb
|
@@ -63,32 +67,41 @@ files:
|
|
63
67
|
has_rdoc: true
|
64
68
|
homepage: http://masanjin.net/whistlepig
|
65
69
|
licenses: []
|
70
|
+
|
66
71
|
post_install_message:
|
67
|
-
rdoc_options:
|
72
|
+
rdoc_options:
|
68
73
|
- -c
|
69
74
|
- utf8
|
70
75
|
- --main
|
71
76
|
- README
|
72
77
|
- --title
|
73
78
|
- Whistlepig
|
74
|
-
require_paths:
|
79
|
+
require_paths:
|
75
80
|
- lib
|
76
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
81
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
77
82
|
none: false
|
78
|
-
requirements:
|
79
|
-
- -
|
80
|
-
- !ruby/object:Gem::Version
|
81
|
-
|
82
|
-
|
83
|
+
requirements:
|
84
|
+
- - ">="
|
85
|
+
- !ruby/object:Gem::Version
|
86
|
+
hash: 3
|
87
|
+
segments:
|
88
|
+
- 0
|
89
|
+
version: "0"
|
90
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
83
91
|
none: false
|
84
|
-
requirements:
|
85
|
-
- -
|
86
|
-
- !ruby/object:Gem::Version
|
87
|
-
|
92
|
+
requirements:
|
93
|
+
- - ">="
|
94
|
+
- !ruby/object:Gem::Version
|
95
|
+
hash: 3
|
96
|
+
segments:
|
97
|
+
- 0
|
98
|
+
version: "0"
|
88
99
|
requirements: []
|
100
|
+
|
89
101
|
rubyforge_project:
|
90
102
|
rubygems_version: 1.6.0
|
91
103
|
signing_key:
|
92
104
|
specification_version: 3
|
93
105
|
summary: a minimalist realtime full-text search index
|
94
106
|
test_files: []
|
107
|
+
|