rroonga 2.0.1 → 2.0.2
Sign up to get free protection for your applications and to get access to all the features.
- data/README.textile +73 -0
- data/TODO +0 -0
- data/ext/groonga/rb-grn.h +1 -1
- metadata +235 -88
data/README.textile
ADDED
@@ -0,0 +1,73 @@
|
|
1
|
+
h1. README
|
2
|
+
|
3
|
+
h2. Name
|
4
|
+
|
5
|
+
rroonga
|
6
|
+
|
7
|
+
h2. Description
|
8
|
+
|
9
|
+
Ruby bindings for groonga that provide full text search and
|
10
|
+
column store features.
|
11
|
+
|
12
|
+
rroonga is an extension library to use groonga's DB-API
|
13
|
+
layer. rroonga provides Rubyish readable and writable API
|
14
|
+
not C like API. You can use groonga's fast and highly
|
15
|
+
functional features from Ruby with Rubyish form.
|
16
|
+
|
17
|
+
See the following URL about groonga.
|
18
|
+
|
19
|
+
* "The groonga official site":http://groonga.org/
|
20
|
+
|
21
|
+
h2. Authors
|
22
|
+
|
23
|
+
* Kouhei Sutou <kou@clear-code.com>
|
24
|
+
* Tasuku SUENAGA <a@razil.jp>
|
25
|
+
* Daijiro MORI <morita@razil.jp>
|
26
|
+
* Yuto HAYAMIZU <y.hayamizu@gmail.com>
|
27
|
+
* SHIDARA Yoji <dara@shidara.net>
|
28
|
+
* yoshihara haruka <yoshihara@clear-code.com>
|
29
|
+
|
30
|
+
h2. License
|
31
|
+
|
32
|
+
LGPL 2.1. See license/LGPL for details.
|
33
|
+
|
34
|
+
(Kouhei Sutou has a right to change the license including
|
35
|
+
contributed patches.)
|
36
|
+
|
37
|
+
h2. Dependencies
|
38
|
+
|
39
|
+
* Ruby >= 1.8 (including 1.9.2)
|
40
|
+
* groonga >= 1.2.0
|
41
|
+
|
42
|
+
h2. Install
|
43
|
+
|
44
|
+
<pre>
|
45
|
+
!!!command_line
|
46
|
+
% sudo gem install rroonga
|
47
|
+
</pre>
|
48
|
+
|
49
|
+
h2. Documents
|
50
|
+
|
51
|
+
* "Reference manual in English":http://groonga.rubyforge.org/rroonga/en/
|
52
|
+
* "Reference manual in Japanese":http://groonga.rubyforge.org/rroonga/ja/
|
53
|
+
|
54
|
+
h2. Mailing list
|
55
|
+
|
56
|
+
* English: "groonga-users-en":http://rubyforge.org/mailman/listinfo/groonga-users-en
|
57
|
+
* Japanese: "groonga-dev":http://lists.sourceforge.jp/mailman/listinfo/groonga-dev
|
58
|
+
|
59
|
+
h2. Thanks
|
60
|
+
|
61
|
+
* Daijiro MORI: sent patches to support the latest groonga.
|
62
|
+
* Tasuku SUENAGA: sent bug reports.
|
63
|
+
* niku: sent bug reports.
|
64
|
+
* dara:
|
65
|
+
** wrote tests.
|
66
|
+
** fixed bugs.
|
67
|
+
* id:mat_aki: sent bug reports.
|
68
|
+
* @yune_kotomi: sent a bug report.
|
69
|
+
* m_seki: sent bug reports.
|
70
|
+
* ono matope: sent bug reports.
|
71
|
+
* @kamipo: send a bug report.
|
72
|
+
* ongaeshi: sent a patch to build gem on Windows.
|
73
|
+
* mallowlabs: send a patch.
|
data/TODO
ADDED
File without changes
|
data/ext/groonga/rb-grn.h
CHANGED
metadata
CHANGED
@@ -1,10 +1,15 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: rroonga
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
hash: 11
|
5
5
|
prerelease:
|
6
|
+
segments:
|
7
|
+
- 2
|
8
|
+
- 0
|
9
|
+
- 2
|
10
|
+
version: 2.0.2
|
6
11
|
platform: ruby
|
7
|
-
authors:
|
12
|
+
authors:
|
8
13
|
- Kouhei Sutou
|
9
14
|
- Tasuku SUENAGA
|
10
15
|
- daijiro
|
@@ -13,96 +18,231 @@ authors:
|
|
13
18
|
autorequire:
|
14
19
|
bindir: bin
|
15
20
|
cert_chain: []
|
16
|
-
date: 2012-03-29 00:00:00.000000000 Z
|
17
|
-
dependencies: []
|
18
|
-
description: ! 'rroonga is an extension library to use groonga''s DB-API
|
19
21
|
|
22
|
+
date: 2012-03-29 00:00:00 Z
|
23
|
+
dependencies:
|
24
|
+
- !ruby/object:Gem::Dependency
|
25
|
+
version_requirements: &id001 !ruby/object:Gem::Requirement
|
26
|
+
none: false
|
27
|
+
requirements:
|
28
|
+
- - ">="
|
29
|
+
- !ruby/object:Gem::Version
|
30
|
+
hash: 3
|
31
|
+
segments:
|
32
|
+
- 0
|
33
|
+
version: "0"
|
34
|
+
name: pkg-config
|
35
|
+
prerelease: false
|
36
|
+
type: :runtime
|
37
|
+
requirement: *id001
|
38
|
+
- !ruby/object:Gem::Dependency
|
39
|
+
version_requirements: &id002 !ruby/object:Gem::Requirement
|
40
|
+
none: false
|
41
|
+
requirements:
|
42
|
+
- - ">="
|
43
|
+
- !ruby/object:Gem::Version
|
44
|
+
hash: 3
|
45
|
+
segments:
|
46
|
+
- 0
|
47
|
+
version: "0"
|
48
|
+
name: json
|
49
|
+
prerelease: false
|
50
|
+
type: :runtime
|
51
|
+
requirement: *id002
|
52
|
+
- !ruby/object:Gem::Dependency
|
53
|
+
version_requirements: &id003 !ruby/object:Gem::Requirement
|
54
|
+
none: false
|
55
|
+
requirements:
|
56
|
+
- - ">="
|
57
|
+
- !ruby/object:Gem::Version
|
58
|
+
hash: 19
|
59
|
+
segments:
|
60
|
+
- 2
|
61
|
+
- 4
|
62
|
+
- 6
|
63
|
+
version: 2.4.6
|
64
|
+
name: test-unit
|
65
|
+
prerelease: false
|
66
|
+
type: :development
|
67
|
+
requirement: *id003
|
68
|
+
- !ruby/object:Gem::Dependency
|
69
|
+
version_requirements: &id004 !ruby/object:Gem::Requirement
|
70
|
+
none: false
|
71
|
+
requirements:
|
72
|
+
- - ">="
|
73
|
+
- !ruby/object:Gem::Version
|
74
|
+
hash: 3
|
75
|
+
segments:
|
76
|
+
- 0
|
77
|
+
version: "0"
|
78
|
+
name: test-unit-notify
|
79
|
+
prerelease: false
|
80
|
+
type: :development
|
81
|
+
requirement: *id004
|
82
|
+
- !ruby/object:Gem::Dependency
|
83
|
+
version_requirements: &id005 !ruby/object:Gem::Requirement
|
84
|
+
none: false
|
85
|
+
requirements:
|
86
|
+
- - ">="
|
87
|
+
- !ruby/object:Gem::Version
|
88
|
+
hash: 3
|
89
|
+
segments:
|
90
|
+
- 0
|
91
|
+
version: "0"
|
92
|
+
name: rake
|
93
|
+
prerelease: false
|
94
|
+
type: :development
|
95
|
+
requirement: *id005
|
96
|
+
- !ruby/object:Gem::Dependency
|
97
|
+
version_requirements: &id006 !ruby/object:Gem::Requirement
|
98
|
+
none: false
|
99
|
+
requirements:
|
100
|
+
- - ">="
|
101
|
+
- !ruby/object:Gem::Version
|
102
|
+
hash: 3
|
103
|
+
segments:
|
104
|
+
- 0
|
105
|
+
version: "0"
|
106
|
+
name: rake-compiler
|
107
|
+
prerelease: false
|
108
|
+
type: :development
|
109
|
+
requirement: *id006
|
110
|
+
- !ruby/object:Gem::Dependency
|
111
|
+
version_requirements: &id007 !ruby/object:Gem::Requirement
|
112
|
+
none: false
|
113
|
+
requirements:
|
114
|
+
- - ">="
|
115
|
+
- !ruby/object:Gem::Version
|
116
|
+
hash: 3
|
117
|
+
segments:
|
118
|
+
- 0
|
119
|
+
version: "0"
|
120
|
+
name: jeweler
|
121
|
+
prerelease: false
|
122
|
+
type: :development
|
123
|
+
requirement: *id007
|
124
|
+
- !ruby/object:Gem::Dependency
|
125
|
+
version_requirements: &id008 !ruby/object:Gem::Requirement
|
126
|
+
none: false
|
127
|
+
requirements:
|
128
|
+
- - ">="
|
129
|
+
- !ruby/object:Gem::Version
|
130
|
+
hash: 3
|
131
|
+
segments:
|
132
|
+
- 0
|
133
|
+
version: "0"
|
134
|
+
name: yard
|
135
|
+
prerelease: false
|
136
|
+
type: :development
|
137
|
+
requirement: *id008
|
138
|
+
- !ruby/object:Gem::Dependency
|
139
|
+
version_requirements: &id009 !ruby/object:Gem::Requirement
|
140
|
+
none: false
|
141
|
+
requirements:
|
142
|
+
- - ">="
|
143
|
+
- !ruby/object:Gem::Version
|
144
|
+
hash: 3
|
145
|
+
segments:
|
146
|
+
- 0
|
147
|
+
version: "0"
|
148
|
+
name: packnga
|
149
|
+
prerelease: false
|
150
|
+
type: :development
|
151
|
+
requirement: *id009
|
152
|
+
description: |-
|
153
|
+
rroonga is an extension library to use groonga's DB-API
|
20
154
|
layer. rroonga provides Rubyish readable and writable API
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
functional features from Ruby with Rubyish form.'
|
25
|
-
email:
|
155
|
+
not C like API. You can use groonga's fast and highly
|
156
|
+
functional features from Ruby with Rubyish form.
|
157
|
+
email:
|
26
158
|
- groonga-users-en@rubyforge.org
|
27
159
|
- groonga-dev@lists.sourceforge.jp
|
28
|
-
executables:
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
-
|
34
|
-
|
35
|
-
-
|
36
|
-
-
|
37
|
-
|
38
|
-
-
|
39
|
-
-
|
40
|
-
- lib/groonga/dumper.rb
|
41
|
-
- lib/groonga/posting.rb
|
42
|
-
- lib/groonga/context.rb
|
43
|
-
- lib/groonga/record.rb
|
44
|
-
- lib/groonga/expression-builder.rb
|
45
|
-
- lib/groonga.rb
|
160
|
+
executables:
|
161
|
+
- grntest-log-analyze
|
162
|
+
- grndump
|
163
|
+
- groonga-query-log-extract
|
164
|
+
extensions:
|
165
|
+
- ext/groonga/extconf.rb
|
166
|
+
extra_rdoc_files:
|
167
|
+
- README.textile
|
168
|
+
- TODO
|
169
|
+
files:
|
170
|
+
- Gemfile
|
171
|
+
- Rakefile
|
46
172
|
- benchmark/common.rb
|
47
|
-
- benchmark/repeat-load.rb
|
48
|
-
- benchmark/read-write-many-small-items.rb
|
49
173
|
- benchmark/create-wikipedia-database.rb
|
50
|
-
- benchmark/write-many-small-items.rb
|
174
|
+
- benchmark/read-write-many-small-items.rb
|
175
|
+
- benchmark/repeat-load.rb
|
51
176
|
- benchmark/select.rb
|
52
|
-
-
|
53
|
-
- bin/grntest-log-analyze
|
177
|
+
- benchmark/write-many-small-items.rb
|
54
178
|
- bin/grndump
|
179
|
+
- bin/grntest-log-analyze
|
55
180
|
- bin/groonga-query-log-extract
|
56
|
-
- extconf.rb
|
57
|
-
- rroonga-build.rb
|
58
|
-
- example/index-html.rb
|
59
181
|
- example/bookmark.rb
|
60
|
-
-
|
61
|
-
-
|
62
|
-
- ext/groonga/
|
182
|
+
- example/index-html.rb
|
183
|
+
- ext/groonga/extconf.rb
|
184
|
+
- ext/groonga/groonga.def
|
185
|
+
- ext/groonga/rb-grn-accessor.c
|
186
|
+
- ext/groonga/rb-grn-array-cursor.c
|
187
|
+
- ext/groonga/rb-grn-array.c
|
63
188
|
- ext/groonga/rb-grn-column.c
|
64
|
-
- ext/groonga/rb-grn-
|
189
|
+
- ext/groonga/rb-grn-context.c
|
190
|
+
- ext/groonga/rb-grn-database.c
|
191
|
+
- ext/groonga/rb-grn-double-array-trie-cursor.c
|
192
|
+
- ext/groonga/rb-grn-double-array-trie.c
|
65
193
|
- ext/groonga/rb-grn-encoding-support.c
|
66
|
-
- ext/groonga/rb-grn-
|
67
|
-
- ext/groonga/rb-grn-
|
194
|
+
- ext/groonga/rb-grn-encoding.c
|
195
|
+
- ext/groonga/rb-grn-exception.c
|
196
|
+
- ext/groonga/rb-grn-expression-builder.c
|
197
|
+
- ext/groonga/rb-grn-expression.c
|
198
|
+
- ext/groonga/rb-grn-fix-size-column.c
|
68
199
|
- ext/groonga/rb-grn-hash-cursor.c
|
69
|
-
- ext/groonga/rb-grn-
|
200
|
+
- ext/groonga/rb-grn-hash.c
|
201
|
+
- ext/groonga/rb-grn-index-column.c
|
202
|
+
- ext/groonga/rb-grn-index-cursor.c
|
203
|
+
- ext/groonga/rb-grn-logger.c
|
70
204
|
- ext/groonga/rb-grn-object.c
|
71
|
-
- ext/groonga/rb-grn-
|
72
|
-
- ext/groonga/rb-grn-
|
73
|
-
- ext/groonga/rb-grn-table-key-support.c
|
74
|
-
- ext/groonga/rb-grn-array.c
|
205
|
+
- ext/groonga/rb-grn-operator.c
|
206
|
+
- ext/groonga/rb-grn-patricia-trie-cursor.c
|
75
207
|
- ext/groonga/rb-grn-patricia-trie.c
|
76
|
-
- ext/groonga/rb-grn-
|
77
|
-
- ext/groonga/rb-grn-
|
208
|
+
- ext/groonga/rb-grn-plugin.c
|
209
|
+
- ext/groonga/rb-grn-posting.c
|
210
|
+
- ext/groonga/rb-grn-procedure.c
|
78
211
|
- ext/groonga/rb-grn-record.c
|
79
|
-
- ext/groonga/rb-groonga.c
|
80
|
-
- ext/groonga/rb-grn-exception.c
|
81
|
-
- ext/groonga/rb-grn-variable-size-column.c
|
82
|
-
- ext/groonga/rb-grn-encoding.c
|
83
|
-
- ext/groonga/rb-grn-expression-builder.c
|
84
|
-
- ext/groonga/rb-grn-operator.c
|
85
212
|
- ext/groonga/rb-grn-snippet.c
|
86
|
-
- ext/groonga/rb-grn-
|
87
|
-
- ext/groonga/rb-grn-type.c
|
213
|
+
- ext/groonga/rb-grn-table-cursor-key-support.c
|
88
214
|
- ext/groonga/rb-grn-table-cursor.c
|
89
|
-
- ext/groonga/rb-grn-
|
215
|
+
- ext/groonga/rb-grn-table-key-support.c
|
216
|
+
- ext/groonga/rb-grn-table.c
|
217
|
+
- ext/groonga/rb-grn-type.c
|
218
|
+
- ext/groonga/rb-grn-utils.c
|
219
|
+
- ext/groonga/rb-grn-variable-size-column.c
|
220
|
+
- ext/groonga/rb-grn-variable.c
|
221
|
+
- ext/groonga/rb-grn-view-accessor.c
|
90
222
|
- ext/groonga/rb-grn-view-cursor.c
|
91
|
-
- ext/groonga/rb-grn-logger.c
|
92
|
-
- ext/groonga/rb-grn-plugin.c
|
93
|
-
- ext/groonga/rb-grn-database.c
|
94
223
|
- ext/groonga/rb-grn-view-record.c
|
95
|
-
- ext/groonga/rb-grn-patricia-trie-cursor.c
|
96
|
-
- ext/groonga/rb-grn-index-cursor.c
|
97
224
|
- ext/groonga/rb-grn-view.c
|
98
|
-
- ext/groonga/rb-grn-accessor.c
|
99
|
-
- ext/groonga/rb-grn-context.c
|
100
|
-
- ext/groonga/rb-grn-posting.c
|
101
|
-
- ext/groonga/rb-grn-expression.c
|
102
|
-
- ext/groonga/rb-grn-hash.c
|
103
225
|
- ext/groonga/rb-grn.h
|
104
|
-
- ext/groonga/
|
105
|
-
-
|
226
|
+
- ext/groonga/rb-groonga.c
|
227
|
+
- extconf.rb
|
228
|
+
- lib/groonga.rb
|
229
|
+
- lib/groonga/command.rb
|
230
|
+
- lib/groonga/context.rb
|
231
|
+
- lib/groonga/dumper.rb
|
232
|
+
- lib/groonga/expression-builder-19.rb
|
233
|
+
- lib/groonga/expression-builder.rb
|
234
|
+
- lib/groonga/grntest-log.rb
|
235
|
+
- lib/groonga/pagination.rb
|
236
|
+
- lib/groonga/patricia-trie.rb
|
237
|
+
- lib/groonga/posting.rb
|
238
|
+
- lib/groonga/query-log.rb
|
239
|
+
- lib/groonga/record.rb
|
240
|
+
- lib/groonga/schema.rb
|
241
|
+
- lib/groonga/view-record.rb
|
242
|
+
- misc/grnop2ruby.rb
|
243
|
+
- rroonga-build.rb
|
244
|
+
- README.textile
|
245
|
+
- TODO
|
106
246
|
- test/test-schema.rb
|
107
247
|
- test/test-vector-column.rb
|
108
248
|
- test/test-schema-dumper.rb
|
@@ -151,32 +291,39 @@ files:
|
|
151
291
|
- test/test-double-array-trie.rb
|
152
292
|
- test/test-record.rb
|
153
293
|
homepage: http://groonga.rubyforge.org/
|
154
|
-
licenses:
|
294
|
+
licenses:
|
155
295
|
- LGPLv2
|
156
296
|
post_install_message:
|
157
297
|
rdoc_options: []
|
158
|
-
|
298
|
+
|
299
|
+
require_paths:
|
159
300
|
- lib
|
160
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
301
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
161
302
|
none: false
|
162
|
-
requirements:
|
163
|
-
- -
|
164
|
-
- !ruby/object:Gem::Version
|
165
|
-
|
166
|
-
|
303
|
+
requirements:
|
304
|
+
- - ">="
|
305
|
+
- !ruby/object:Gem::Version
|
306
|
+
hash: 3
|
307
|
+
segments:
|
308
|
+
- 0
|
309
|
+
version: "0"
|
310
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
167
311
|
none: false
|
168
|
-
requirements:
|
169
|
-
- -
|
170
|
-
- !ruby/object:Gem::Version
|
171
|
-
|
312
|
+
requirements:
|
313
|
+
- - ">="
|
314
|
+
- !ruby/object:Gem::Version
|
315
|
+
hash: 3
|
316
|
+
segments:
|
317
|
+
- 0
|
318
|
+
version: "0"
|
172
319
|
requirements: []
|
320
|
+
|
173
321
|
rubyforge_project: groonga
|
174
|
-
rubygems_version: 1.8.
|
322
|
+
rubygems_version: 1.8.15
|
175
323
|
signing_key:
|
176
324
|
specification_version: 3
|
177
|
-
summary: Ruby bindings for groonga that provide full text search and column store
|
178
|
-
|
179
|
-
test_files:
|
325
|
+
summary: Ruby bindings for groonga that provide full text search and column store features.
|
326
|
+
test_files:
|
180
327
|
- test/test-schema.rb
|
181
328
|
- test/test-vector-column.rb
|
182
329
|
- test/test-schema-dumper.rb
|