whistlepig 0.11.1 → 0.11.2
Sign up to get free protection for your applications and to get access to all the features.
- data/README +2 -2
- data/ext/whistlepig/index.c +0 -2
- metadata +54 -70
data/README
CHANGED
@@ -8,7 +8,7 @@ full-text search without the frills, Whistlepig may be for you.
|
|
8
8
|
Whistlepig is written in ANSI C99. It currently provides a C API and Ruby
|
9
9
|
bindings.
|
10
10
|
|
11
|
-
Latest version: 0.11.
|
11
|
+
Latest version: 0.11.2, released 2012-05-19.
|
12
12
|
Status: beta
|
13
13
|
News: http://all-thing.net/label/whistlepig/
|
14
14
|
Homepage: http://masanjin.net/whistlepig/
|
@@ -16,7 +16,7 @@ Latest version: 0.11.1, released 2012-04-19.
|
|
16
16
|
|
17
17
|
= Getting it
|
18
18
|
|
19
|
-
Tarball: http://masanjin.net/whistlepig/whistlepig-0.11.
|
19
|
+
Tarball: http://masanjin.net/whistlepig/whistlepig-0.11.2.tar.gz
|
20
20
|
Rubygem: gem install whistlepig
|
21
21
|
Git: git clone git://github.com/wmorgan/whistlepig.git
|
22
22
|
|
data/ext/whistlepig/index.c
CHANGED
metadata
CHANGED
@@ -1,114 +1,98 @@
|
|
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
|
+
version: 0.11.2
|
5
5
|
prerelease:
|
6
|
-
segments:
|
7
|
-
- 0
|
8
|
-
- 11
|
9
|
-
- 1
|
10
|
-
version: 0.11.1
|
11
6
|
platform: ruby
|
12
|
-
authors:
|
7
|
+
authors:
|
13
8
|
- William Morgan
|
14
9
|
autorequire:
|
15
10
|
bindir: bin
|
16
11
|
cert_chain: []
|
17
|
-
|
18
|
-
date: 2012-04-19 00:00:00 -07:00
|
19
|
-
default_executable:
|
12
|
+
date: 2012-05-19 00:00:00.000000000 Z
|
20
13
|
dependencies: []
|
21
|
-
|
22
|
-
|
14
|
+
description: Whistlepig is a minimalist realtime full-text search index. Its goal
|
15
|
+
is to be as small and minimally-featured as possible, while still remaining useful,
|
16
|
+
performant and scalable to large corpora. If you want realtime full-text search
|
17
|
+
without the frills, Whistlepig may be for you.
|
23
18
|
email: wmorgan-whistlepig-gemspec@masanjin.net
|
24
19
|
executables: []
|
25
|
-
|
26
|
-
extensions:
|
20
|
+
extensions:
|
27
21
|
- ext/whistlepig/extconf.rb
|
28
|
-
extra_rdoc_files:
|
22
|
+
extra_rdoc_files:
|
29
23
|
- README
|
30
24
|
- ext/whistlepig/whistlepig.c
|
31
|
-
files:
|
25
|
+
files:
|
32
26
|
- README
|
33
27
|
- COPYING
|
34
28
|
- ext/whistlepig/extconf.rb
|
35
29
|
- lib/whistlepig.rb
|
36
|
-
- ext/whistlepig/query-parser.lex.h
|
37
|
-
- ext/whistlepig/entry.h
|
38
|
-
- ext/whistlepig/lock.c
|
39
|
-
- ext/whistlepig/stringmap.c
|
40
|
-
- ext/whistlepig/tokenizer.lex.h
|
41
|
-
- ext/whistlepig/whistlepig.h
|
42
30
|
- ext/whistlepig/error.c
|
43
|
-
- ext/whistlepig/snippeter.h
|
44
31
|
- ext/whistlepig/lock.h
|
45
|
-
- ext/whistlepig/
|
46
|
-
- ext/whistlepig/
|
47
|
-
- ext/whistlepig/query-parser.lex.c
|
48
|
-
- ext/whistlepig/defaults.h
|
32
|
+
- ext/whistlepig/snippeter.h
|
33
|
+
- ext/whistlepig/snippeter.c
|
49
34
|
- ext/whistlepig/tokenizer.lex.c
|
50
|
-
- ext/whistlepig/
|
51
|
-
- ext/whistlepig/
|
52
|
-
- ext/whistlepig/
|
53
|
-
- ext/whistlepig/
|
35
|
+
- ext/whistlepig/query-parser.tab.c
|
36
|
+
- ext/whistlepig/defaults.h
|
37
|
+
- ext/whistlepig/stringmap.h
|
38
|
+
- ext/whistlepig/query.c
|
39
|
+
- ext/whistlepig/stringmap.c
|
54
40
|
- ext/whistlepig/query.h
|
55
|
-
- ext/whistlepig/
|
56
|
-
- ext/whistlepig/
|
57
|
-
- ext/whistlepig/
|
58
|
-
- ext/whistlepig/whistlepig.c
|
41
|
+
- ext/whistlepig/rarray.h
|
42
|
+
- ext/whistlepig/segment.h
|
43
|
+
- ext/whistlepig/entry.c
|
59
44
|
- ext/whistlepig/search.c
|
60
|
-
- ext/whistlepig/
|
61
|
-
- ext/whistlepig/termhash.h
|
62
|
-
- ext/whistlepig/query.c
|
45
|
+
- ext/whistlepig/mmap-obj.c
|
63
46
|
- ext/whistlepig/query-parser.tab.h
|
47
|
+
- ext/whistlepig/query-parser.lex.c
|
48
|
+
- ext/whistlepig/query-parser.c
|
49
|
+
- ext/whistlepig/stringpool.c
|
50
|
+
- ext/whistlepig/stringpool.h
|
51
|
+
- ext/whistlepig/whistlepig.h
|
64
52
|
- ext/whistlepig/khash.h
|
65
|
-
- ext/whistlepig/
|
66
|
-
- ext/whistlepig/entry.c
|
67
|
-
- ext/whistlepig/index.h
|
68
|
-
- ext/whistlepig/segment.h
|
69
|
-
- ext/whistlepig/mmap-obj.h
|
70
|
-
- ext/whistlepig/rarray.h
|
71
|
-
- ext/whistlepig/segment.c
|
53
|
+
- ext/whistlepig/index.c
|
72
54
|
- ext/whistlepig/search.h
|
55
|
+
- ext/whistlepig/query-parser.lex.h
|
56
|
+
- ext/whistlepig/mmap-obj.h
|
57
|
+
- ext/whistlepig/tokenizer.lex.h
|
58
|
+
- ext/whistlepig/extconf.h
|
59
|
+
- ext/whistlepig/index.h
|
60
|
+
- ext/whistlepig/entry.h
|
61
|
+
- ext/whistlepig/termhash.h
|
73
62
|
- ext/whistlepig/error.h
|
74
|
-
|
63
|
+
- ext/whistlepig/whistlepig.c
|
64
|
+
- ext/whistlepig/termhash.c
|
65
|
+
- ext/whistlepig/segment.c
|
66
|
+
- ext/whistlepig/query-parser.h
|
67
|
+
- ext/whistlepig/lock.c
|
75
68
|
homepage: http://masanjin.net/whistlepig
|
76
69
|
licenses: []
|
77
|
-
|
78
70
|
post_install_message:
|
79
|
-
rdoc_options:
|
71
|
+
rdoc_options:
|
80
72
|
- -c
|
81
73
|
- utf8
|
82
74
|
- --main
|
83
75
|
- README
|
84
76
|
- --title
|
85
77
|
- Whistlepig
|
86
|
-
require_paths:
|
78
|
+
require_paths:
|
87
79
|
- lib
|
88
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
80
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
89
81
|
none: false
|
90
|
-
requirements:
|
91
|
-
- -
|
92
|
-
- !ruby/object:Gem::Version
|
93
|
-
|
94
|
-
|
95
|
-
- 0
|
96
|
-
version: "0"
|
97
|
-
required_rubygems_version: !ruby/object:Gem::Requirement
|
82
|
+
requirements:
|
83
|
+
- - ! '>='
|
84
|
+
- !ruby/object:Gem::Version
|
85
|
+
version: '0'
|
86
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
98
87
|
none: false
|
99
|
-
requirements:
|
100
|
-
- -
|
101
|
-
- !ruby/object:Gem::Version
|
102
|
-
|
103
|
-
segments:
|
104
|
-
- 0
|
105
|
-
version: "0"
|
88
|
+
requirements:
|
89
|
+
- - ! '>='
|
90
|
+
- !ruby/object:Gem::Version
|
91
|
+
version: '0'
|
106
92
|
requirements: []
|
107
|
-
|
108
93
|
rubyforge_project:
|
109
|
-
rubygems_version: 1.
|
94
|
+
rubygems_version: 1.8.11
|
110
95
|
signing_key:
|
111
96
|
specification_version: 3
|
112
97
|
summary: a minimalist realtime full-text search index
|
113
98
|
test_files: []
|
114
|
-
|