rroonga 2.1.2 → 2.1.3
Sign up to get free protection for your applications and to get access to all the features.
- data/doc/text/news.textile +29 -0
- data/doc/text/tutorial.textile +176 -199
- data/ext/groonga/extconf.rb +16 -2
- data/ext/groonga/rb-grn-logger.c +214 -202
- data/ext/groonga/rb-grn-object.c +1 -23
- data/ext/groonga/rb-grn-table-cursor.c +1 -2
- data/ext/groonga/rb-grn-table.c +1 -2
- data/ext/groonga/rb-grn-utils.c +3 -7
- data/ext/groonga/rb-grn.h +2 -16
- data/ext/groonga/rb-groonga.c +1 -3
- data/lib/groonga.rb +2 -1
- data/lib/groonga/context.rb +27 -0
- data/lib/groonga/dumper.rb +35 -3
- data/lib/groonga/logger.rb +142 -0
- data/rroonga-build.rb +2 -2
- data/test/groonga-test-utils.rb +3 -1
- data/test/test-context.rb +63 -0
- data/test/test-logger.rb +1 -0
- metadata +292 -307
- data/ext/groonga/rb-grn-view-accessor.c +0 -53
- data/ext/groonga/rb-grn-view-cursor.c +0 -35
- data/ext/groonga/rb-grn-view-record.c +0 -41
- data/ext/groonga/rb-grn-view.c +0 -414
- data/test/test-schema-view.rb +0 -90
- data/test/test-view.rb +0 -71
data/rroonga-build.rb
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
#!/usr/bin/env ruby
|
2
2
|
#
|
3
|
-
# Copyright (C) 2009-
|
3
|
+
# Copyright (C) 2009-2013 Kouhei Sutou <kou@clear-code.com>
|
4
4
|
#
|
5
5
|
# This library is free software; you can redistribute it and/or
|
6
6
|
# modify it under the terms of the GNU Lesser General Public
|
@@ -19,7 +19,7 @@ module RroongaBuild
|
|
19
19
|
module RequiredGroongaVersion
|
20
20
|
MAJOR = 2
|
21
21
|
MINOR = 1
|
22
|
-
MICRO =
|
22
|
+
MICRO = 2
|
23
23
|
VERSION = [MAJOR, MINOR, MICRO]
|
24
24
|
end
|
25
25
|
|
data/test/groonga-test-utils.rb
CHANGED
@@ -63,7 +63,9 @@ module GroongaTestUtils
|
|
63
63
|
def setup_log_path
|
64
64
|
@dump_log = false
|
65
65
|
|
66
|
-
|
66
|
+
@log_path = @tmp_dir + "groonga.log"
|
67
|
+
logger = Groonga::FileLogger.new(@log_path.to_s)
|
68
|
+
Groonga::Logger.register(logger)
|
67
69
|
|
68
70
|
@query_log_path = @tmp_dir + "groonga-query.log"
|
69
71
|
query_logger = Groonga::FileQueryLogger.new(@query_log_path.to_s)
|
data/test/test-context.rb
CHANGED
@@ -127,4 +127,67 @@ class ContextTest < Test::Unit::TestCase
|
|
127
127
|
context.close
|
128
128
|
assert_true(context.closed?)
|
129
129
|
end
|
130
|
+
|
131
|
+
class RestoreTest < self
|
132
|
+
def test_simple
|
133
|
+
commands = <<EOD
|
134
|
+
table_create Items TABLE_HASH_KEY --key_type ShortText
|
135
|
+
column_create Items title COLUMN_SCALAR Text
|
136
|
+
EOD
|
137
|
+
restore(commands)
|
138
|
+
|
139
|
+
assert_equal(commands, dump)
|
140
|
+
end
|
141
|
+
|
142
|
+
def test_continuation_lines
|
143
|
+
dumped_commands = <<-EOD
|
144
|
+
table_create Items TABLE_HASH_KEY\\
|
145
|
+
--key_type ShortText
|
146
|
+
EOD
|
147
|
+
restore(dumped_commands)
|
148
|
+
|
149
|
+
assert_equal(<<-EOC, dump)
|
150
|
+
table_create Items TABLE_HASH_KEY --key_type ShortText
|
151
|
+
EOC
|
152
|
+
end
|
153
|
+
|
154
|
+
def test_empty_line
|
155
|
+
restore(<<-EOC)
|
156
|
+
table_create Items TABLE_HASH_KEY --key_type ShortText
|
157
|
+
|
158
|
+
column_create Items title COLUMN_SCALAR Text
|
159
|
+
|
160
|
+
EOC
|
161
|
+
|
162
|
+
assert_equal(<<-EOC, dump)
|
163
|
+
table_create Items TABLE_HASH_KEY --key_type ShortText
|
164
|
+
column_create Items title COLUMN_SCALAR Text
|
165
|
+
EOC
|
166
|
+
end
|
167
|
+
|
168
|
+
def test_comment
|
169
|
+
restore(<<-EOC)
|
170
|
+
table_create Items TABLE_HASH_KEY --key_type ShortText
|
171
|
+
# column_create Items url COLUMN_SCALAR ShortText
|
172
|
+
column_create Items title COLUMN_SCALAR Text
|
173
|
+
EOC
|
174
|
+
|
175
|
+
assert_equal(<<-EOC, dump)
|
176
|
+
table_create Items TABLE_HASH_KEY --key_type ShortText
|
177
|
+
column_create Items title COLUMN_SCALAR Text
|
178
|
+
EOC
|
179
|
+
end
|
180
|
+
|
181
|
+
private
|
182
|
+
def restore(commands)
|
183
|
+
restored_db_path = @tmp_dir + "restored.db"
|
184
|
+
Groonga::Database.create(:path => restored_db_path.to_s)
|
185
|
+
|
186
|
+
context.restore(commands)
|
187
|
+
end
|
188
|
+
|
189
|
+
def dump
|
190
|
+
Groonga::DatabaseDumper.dump
|
191
|
+
end
|
192
|
+
end
|
130
193
|
end
|
data/test/test-logger.rb
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: 13
|
5
5
|
prerelease:
|
6
|
+
segments:
|
7
|
+
- 2
|
8
|
+
- 1
|
9
|
+
- 3
|
10
|
+
version: 2.1.3
|
6
11
|
platform: ruby
|
7
|
-
authors:
|
12
|
+
authors:
|
8
13
|
- Kouhei Sutou
|
9
14
|
- Tasuku SUENAGA
|
10
15
|
- daijiro
|
@@ -13,409 +18,389 @@ authors:
|
|
13
18
|
autorequire:
|
14
19
|
bindir: bin
|
15
20
|
cert_chain: []
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
+
|
22
|
+
date: 2013-01-29 00:00:00 +09:00
|
23
|
+
default_executable:
|
24
|
+
dependencies:
|
25
|
+
- !ruby/object:Gem::Dependency
|
26
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
21
27
|
none: false
|
22
|
-
requirements:
|
23
|
-
- -
|
24
|
-
- !ruby/object:Gem::Version
|
25
|
-
|
26
|
-
|
28
|
+
requirements:
|
29
|
+
- - ">="
|
30
|
+
- !ruby/object:Gem::Version
|
31
|
+
hash: 3
|
32
|
+
segments:
|
33
|
+
- 0
|
34
|
+
version: "0"
|
35
|
+
version_requirements: *id001
|
36
|
+
name: pkg-config
|
27
37
|
prerelease: false
|
28
|
-
|
38
|
+
type: :runtime
|
39
|
+
- !ruby/object:Gem::Dependency
|
40
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
29
41
|
none: false
|
30
|
-
requirements:
|
31
|
-
- -
|
32
|
-
- !ruby/object:Gem::Version
|
33
|
-
|
34
|
-
|
42
|
+
requirements:
|
43
|
+
- - ">="
|
44
|
+
- !ruby/object:Gem::Version
|
45
|
+
hash: 3
|
46
|
+
segments:
|
47
|
+
- 0
|
48
|
+
version: "0"
|
49
|
+
version_requirements: *id002
|
35
50
|
name: json
|
36
|
-
requirement: !ruby/object:Gem::Requirement
|
37
|
-
none: false
|
38
|
-
requirements:
|
39
|
-
- - ! '>='
|
40
|
-
- !ruby/object:Gem::Version
|
41
|
-
version: '0'
|
42
|
-
type: :runtime
|
43
51
|
prerelease: false
|
44
|
-
|
52
|
+
type: :runtime
|
53
|
+
- !ruby/object:Gem::Dependency
|
54
|
+
requirement: &id003 !ruby/object:Gem::Requirement
|
45
55
|
none: false
|
46
|
-
requirements:
|
47
|
-
- -
|
48
|
-
- !ruby/object:Gem::Version
|
49
|
-
|
50
|
-
|
56
|
+
requirements:
|
57
|
+
- - ">="
|
58
|
+
- !ruby/object:Gem::Version
|
59
|
+
hash: 3
|
60
|
+
segments:
|
61
|
+
- 0
|
62
|
+
version: "0"
|
63
|
+
version_requirements: *id003
|
51
64
|
name: archive-zip
|
52
|
-
requirement: !ruby/object:Gem::Requirement
|
53
|
-
none: false
|
54
|
-
requirements:
|
55
|
-
- - ! '>='
|
56
|
-
- !ruby/object:Gem::Version
|
57
|
-
version: '0'
|
58
|
-
type: :runtime
|
59
65
|
prerelease: false
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
- - ! '>='
|
64
|
-
- !ruby/object:Gem::Version
|
65
|
-
version: '0'
|
66
|
-
- !ruby/object:Gem::Dependency
|
67
|
-
name: test-unit
|
68
|
-
requirement: !ruby/object:Gem::Requirement
|
66
|
+
type: :runtime
|
67
|
+
- !ruby/object:Gem::Dependency
|
68
|
+
requirement: &id004 !ruby/object:Gem::Requirement
|
69
69
|
none: false
|
70
|
-
requirements:
|
71
|
-
- -
|
72
|
-
- !ruby/object:Gem::Version
|
70
|
+
requirements:
|
71
|
+
- - ">="
|
72
|
+
- !ruby/object:Gem::Version
|
73
|
+
hash: 19
|
74
|
+
segments:
|
75
|
+
- 2
|
76
|
+
- 4
|
77
|
+
- 6
|
73
78
|
version: 2.4.6
|
74
|
-
|
79
|
+
version_requirements: *id004
|
80
|
+
name: test-unit
|
75
81
|
prerelease: false
|
76
|
-
|
82
|
+
type: :development
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
requirement: &id005 !ruby/object:Gem::Requirement
|
77
85
|
none: false
|
78
|
-
requirements:
|
79
|
-
- -
|
80
|
-
- !ruby/object:Gem::Version
|
81
|
-
|
82
|
-
|
86
|
+
requirements:
|
87
|
+
- - ">="
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
hash: 3
|
90
|
+
segments:
|
91
|
+
- 0
|
92
|
+
version: "0"
|
93
|
+
version_requirements: *id005
|
83
94
|
name: test-unit-notify
|
84
|
-
requirement: !ruby/object:Gem::Requirement
|
85
|
-
none: false
|
86
|
-
requirements:
|
87
|
-
- - ! '>='
|
88
|
-
- !ruby/object:Gem::Version
|
89
|
-
version: '0'
|
90
|
-
type: :development
|
91
95
|
prerelease: false
|
92
|
-
|
96
|
+
type: :development
|
97
|
+
- !ruby/object:Gem::Dependency
|
98
|
+
requirement: &id006 !ruby/object:Gem::Requirement
|
93
99
|
none: false
|
94
|
-
requirements:
|
95
|
-
- -
|
96
|
-
- !ruby/object:Gem::Version
|
97
|
-
|
98
|
-
|
100
|
+
requirements:
|
101
|
+
- - ">="
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
hash: 3
|
104
|
+
segments:
|
105
|
+
- 0
|
106
|
+
version: "0"
|
107
|
+
version_requirements: *id006
|
99
108
|
name: rake
|
100
|
-
requirement: !ruby/object:Gem::Requirement
|
101
|
-
none: false
|
102
|
-
requirements:
|
103
|
-
- - ! '>='
|
104
|
-
- !ruby/object:Gem::Version
|
105
|
-
version: '0'
|
106
|
-
type: :development
|
107
109
|
prerelease: false
|
108
|
-
|
110
|
+
type: :development
|
111
|
+
- !ruby/object:Gem::Dependency
|
112
|
+
requirement: &id007 !ruby/object:Gem::Requirement
|
109
113
|
none: false
|
110
|
-
requirements:
|
111
|
-
- -
|
112
|
-
- !ruby/object:Gem::Version
|
113
|
-
|
114
|
-
|
114
|
+
requirements:
|
115
|
+
- - ">="
|
116
|
+
- !ruby/object:Gem::Version
|
117
|
+
hash: 3
|
118
|
+
segments:
|
119
|
+
- 0
|
120
|
+
version: "0"
|
121
|
+
version_requirements: *id007
|
115
122
|
name: rake-compiler
|
116
|
-
requirement: !ruby/object:Gem::Requirement
|
117
|
-
none: false
|
118
|
-
requirements:
|
119
|
-
- - ! '>='
|
120
|
-
- !ruby/object:Gem::Version
|
121
|
-
version: '0'
|
122
|
-
type: :development
|
123
123
|
prerelease: false
|
124
|
-
|
124
|
+
type: :development
|
125
|
+
- !ruby/object:Gem::Dependency
|
126
|
+
requirement: &id008 !ruby/object:Gem::Requirement
|
125
127
|
none: false
|
126
|
-
requirements:
|
127
|
-
- -
|
128
|
-
- !ruby/object:Gem::Version
|
129
|
-
|
130
|
-
|
128
|
+
requirements:
|
129
|
+
- - ">="
|
130
|
+
- !ruby/object:Gem::Version
|
131
|
+
hash: 3
|
132
|
+
segments:
|
133
|
+
- 0
|
134
|
+
version: "0"
|
135
|
+
version_requirements: *id008
|
131
136
|
name: bundler
|
132
|
-
requirement: !ruby/object:Gem::Requirement
|
133
|
-
none: false
|
134
|
-
requirements:
|
135
|
-
- - ! '>='
|
136
|
-
- !ruby/object:Gem::Version
|
137
|
-
version: '0'
|
138
|
-
type: :development
|
139
137
|
prerelease: false
|
140
|
-
|
138
|
+
type: :development
|
139
|
+
- !ruby/object:Gem::Dependency
|
140
|
+
requirement: &id009 !ruby/object:Gem::Requirement
|
141
141
|
none: false
|
142
|
-
requirements:
|
143
|
-
- -
|
144
|
-
- !ruby/object:Gem::Version
|
145
|
-
|
146
|
-
|
142
|
+
requirements:
|
143
|
+
- - ">="
|
144
|
+
- !ruby/object:Gem::Version
|
145
|
+
hash: 3
|
146
|
+
segments:
|
147
|
+
- 0
|
148
|
+
version: "0"
|
149
|
+
version_requirements: *id009
|
147
150
|
name: yard
|
148
|
-
requirement: !ruby/object:Gem::Requirement
|
149
|
-
none: false
|
150
|
-
requirements:
|
151
|
-
- - ! '>='
|
152
|
-
- !ruby/object:Gem::Version
|
153
|
-
version: '0'
|
154
|
-
type: :development
|
155
151
|
prerelease: false
|
156
|
-
|
152
|
+
type: :development
|
153
|
+
- !ruby/object:Gem::Dependency
|
154
|
+
requirement: &id010 !ruby/object:Gem::Requirement
|
157
155
|
none: false
|
158
|
-
requirements:
|
159
|
-
- -
|
160
|
-
- !ruby/object:Gem::Version
|
161
|
-
|
162
|
-
|
156
|
+
requirements:
|
157
|
+
- - ">="
|
158
|
+
- !ruby/object:Gem::Version
|
159
|
+
hash: 3
|
160
|
+
segments:
|
161
|
+
- 0
|
162
|
+
version: "0"
|
163
|
+
version_requirements: *id010
|
163
164
|
name: packnga
|
164
|
-
requirement: !ruby/object:Gem::Requirement
|
165
|
-
none: false
|
166
|
-
requirements:
|
167
|
-
- - ! '>='
|
168
|
-
- !ruby/object:Gem::Version
|
169
|
-
version: '0'
|
170
|
-
type: :development
|
171
165
|
prerelease: false
|
172
|
-
|
166
|
+
type: :development
|
167
|
+
- !ruby/object:Gem::Dependency
|
168
|
+
requirement: &id011 !ruby/object:Gem::Requirement
|
173
169
|
none: false
|
174
|
-
requirements:
|
175
|
-
- -
|
176
|
-
- !ruby/object:Gem::Version
|
177
|
-
|
178
|
-
|
170
|
+
requirements:
|
171
|
+
- - ">="
|
172
|
+
- !ruby/object:Gem::Version
|
173
|
+
hash: 3
|
174
|
+
segments:
|
175
|
+
- 0
|
176
|
+
version: "0"
|
177
|
+
version_requirements: *id011
|
179
178
|
name: RedCloth
|
180
|
-
requirement: !ruby/object:Gem::Requirement
|
181
|
-
none: false
|
182
|
-
requirements:
|
183
|
-
- - ! '>='
|
184
|
-
- !ruby/object:Gem::Version
|
185
|
-
version: '0'
|
186
|
-
type: :development
|
187
179
|
prerelease: false
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
- - ! '>='
|
192
|
-
- !ruby/object:Gem::Version
|
193
|
-
version: '0'
|
194
|
-
description: ! 'rroonga is an extension library to use groonga''s DB-API
|
195
|
-
|
180
|
+
type: :development
|
181
|
+
description: |-
|
182
|
+
rroonga is an extension library to use groonga's DB-API
|
196
183
|
layer. rroonga provides Rubyish readable and writable API
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
functional features from Ruby with Rubyish form.'
|
201
|
-
email:
|
184
|
+
not C like API. You can use groonga's fast and highly
|
185
|
+
functional features from Ruby with Rubyish form.
|
186
|
+
email:
|
202
187
|
- kou@clear-code.com
|
203
188
|
- a@razil.jp
|
204
189
|
- morita@razil.jp
|
205
190
|
- y.hayamizu@gmail.com
|
206
191
|
- dara@shidara.net
|
207
|
-
executables:
|
192
|
+
executables:
|
208
193
|
- grntest-log-analyze
|
209
194
|
- groonga-index-dump
|
210
195
|
- grndump
|
211
|
-
extensions:
|
196
|
+
extensions:
|
212
197
|
- ext/groonga/extconf.rb
|
213
|
-
extra_rdoc_files:
|
198
|
+
extra_rdoc_files:
|
214
199
|
- README.textile
|
215
|
-
files:
|
200
|
+
files:
|
216
201
|
- doc/text/tutorial.textile
|
217
202
|
- doc/text/news.textile
|
218
203
|
- rroonga.gemspec
|
219
204
|
- rroonga-build.rb
|
220
205
|
- extconf.rb
|
221
|
-
- lib/groonga.rb
|
222
|
-
- lib/groonga/geo-point.rb
|
223
|
-
- lib/groonga/record.rb
|
224
|
-
- lib/groonga/index-column.rb
|
206
|
+
- lib/groonga/posting.rb
|
225
207
|
- lib/groonga/view-record.rb
|
208
|
+
- lib/groonga/index-column.rb
|
209
|
+
- lib/groonga/expression-builder.rb
|
210
|
+
- lib/groonga/record.rb
|
211
|
+
- lib/groonga/dumper.rb
|
212
|
+
- lib/groonga/database.rb
|
213
|
+
- lib/groonga/expression-builder-19.rb
|
214
|
+
- lib/groonga/query-logger.rb
|
215
|
+
- lib/groonga/logger.rb
|
216
|
+
- lib/groonga/patricia-trie.rb
|
226
217
|
- lib/groonga/context.rb
|
227
218
|
- lib/groonga/grntest-log.rb
|
219
|
+
- lib/groonga/geo-point.rb
|
228
220
|
- lib/groonga/pagination.rb
|
229
|
-
- lib/groonga/database.rb
|
230
|
-
- lib/groonga/schema.rb
|
231
221
|
- lib/groonga/command.rb
|
232
|
-
- lib/groonga/
|
233
|
-
- lib/groonga
|
234
|
-
- lib/groonga/expression-builder.rb
|
235
|
-
- lib/groonga/dumper.rb
|
236
|
-
- lib/groonga/query-logger.rb
|
237
|
-
- lib/groonga/expression-builder-19.rb
|
238
|
-
- benchmark/create-wikipedia-database.rb
|
239
|
-
- benchmark/common.rb
|
240
|
-
- benchmark/write-many-small-items.rb
|
222
|
+
- lib/groonga/schema.rb
|
223
|
+
- lib/groonga.rb
|
241
224
|
- benchmark/read-write-many-small-items.rb
|
242
|
-
- benchmark/
|
225
|
+
- benchmark/write-many-small-items.rb
|
226
|
+
- benchmark/common.rb
|
227
|
+
- benchmark/create-wikipedia-database.rb
|
243
228
|
- benchmark/repeat-load.rb
|
229
|
+
- benchmark/select.rb
|
244
230
|
- misc/grnop2ruby.rb
|
245
|
-
- example/index-html.rb
|
246
231
|
- example/bookmark.rb
|
247
|
-
-
|
248
|
-
- ext/groonga/rb-grn-
|
249
|
-
- ext/groonga/rb-grn-
|
250
|
-
- ext/groonga/rb-grn-
|
251
|
-
- ext/groonga/rb-grn-
|
252
|
-
- ext/groonga/rb-grn-
|
253
|
-
- ext/groonga/rb-grn-table-cursor-key-support.c
|
254
|
-
- ext/groonga/rb-grn-normalizer.c
|
232
|
+
- example/index-html.rb
|
233
|
+
- ext/groonga/rb-grn-encoding-support.c
|
234
|
+
- ext/groonga/rb-grn-patricia-trie.c
|
235
|
+
- ext/groonga/rb-grn-geo-point.c
|
236
|
+
- ext/groonga/rb-grn-snippet.c
|
237
|
+
- ext/groonga/rb-grn-double-array-trie-cursor.c
|
255
238
|
- ext/groonga/rb-grn-fix-size-column.c
|
256
|
-
- ext/groonga/rb-grn-
|
239
|
+
- ext/groonga/rb-grn-accessor.c
|
257
240
|
- ext/groonga/rb-grn-plugin.c
|
258
|
-
- ext/groonga/rb-grn-hash.c
|
259
|
-
- ext/groonga/rb-grn-variable-size-column.c
|
260
|
-
- ext/groonga/rb-grn-index-column.c
|
261
|
-
- ext/groonga/rb-grn-operator.c
|
262
|
-
- ext/groonga/rb-grn-table-key-support.c
|
263
|
-
- ext/groonga/rb-grn-patricia-trie.c
|
264
|
-
- ext/groonga/rb-grn-table-cursor.c
|
265
|
-
- ext/groonga/rb-grn-object.c
|
266
241
|
- ext/groonga/rb-grn-table.c
|
267
|
-
- ext/groonga/rb-grn-
|
268
|
-
- ext/groonga/rb-grn-snippet.c
|
269
|
-
- ext/groonga/rb-grn-encoding-support.c
|
270
|
-
- ext/groonga/rb-grn-view-record.c
|
271
|
-
- ext/groonga/rb-grn-patricia-trie-cursor.c
|
272
|
-
- ext/groonga/rb-grn-array.c
|
242
|
+
- ext/groonga/rb-grn-operator.c
|
273
243
|
- ext/groonga/rb-grn-database.c
|
244
|
+
- ext/groonga/rb-grn-variable-size-column.c
|
274
245
|
- ext/groonga/rb-grn-query-logger.c
|
275
|
-
- ext/groonga/rb-grn-
|
276
|
-
- ext/groonga/rb-grn-
|
277
|
-
- ext/groonga/rb-grn-
|
278
|
-
- ext/groonga/rb-grn-
|
279
|
-
- ext/groonga/rb-grn-accessor.c
|
280
|
-
- ext/groonga/rb-grn-double-array-trie-cursor.c
|
246
|
+
- ext/groonga/rb-grn-record.c
|
247
|
+
- ext/groonga/rb-grn-context.c
|
248
|
+
- ext/groonga/rb-grn-exception.c
|
249
|
+
- ext/groonga/rb-grn-table-key-support.c
|
281
250
|
- ext/groonga/rb-grn-posting.c
|
282
|
-
- ext/groonga/rb-
|
283
|
-
- ext/groonga/rb-grn-
|
251
|
+
- ext/groonga/rb-grn-hash-cursor.c
|
252
|
+
- ext/groonga/rb-grn-expression-builder.c
|
253
|
+
- ext/groonga/rb-grn-expression.c
|
284
254
|
- ext/groonga/rb-grn-array-cursor.c
|
255
|
+
- ext/groonga/rb-grn-encoding.c
|
285
256
|
- ext/groonga/rb-grn-utils.c
|
257
|
+
- ext/groonga/rb-groonga.c
|
258
|
+
- ext/groonga/rb-grn-patricia-trie-cursor.c
|
259
|
+
- ext/groonga/rb-grn-array.c
|
260
|
+
- ext/groonga/rb-grn-normalizer.c
|
261
|
+
- ext/groonga/rb-grn-object.c
|
262
|
+
- ext/groonga/rb-grn-type.c
|
263
|
+
- ext/groonga/rb-grn-column.c
|
264
|
+
- ext/groonga/rb-grn-index-cursor.c
|
265
|
+
- ext/groonga/rb-grn-hash.c
|
286
266
|
- ext/groonga/rb-grn-logger.c
|
287
|
-
- ext/groonga/rb-grn-
|
288
|
-
- ext/groonga/rb-grn-
|
289
|
-
- ext/groonga/rb-grn-
|
267
|
+
- ext/groonga/rb-grn-variable.c
|
268
|
+
- ext/groonga/rb-grn-index-column.c
|
269
|
+
- ext/groonga/rb-grn-table-cursor-key-support.c
|
290
270
|
- ext/groonga/rb-grn-double-array-trie.c
|
271
|
+
- ext/groonga/rb-grn-procedure.c
|
272
|
+
- ext/groonga/rb-grn-table-cursor.c
|
291
273
|
- ext/groonga/rb-grn.h
|
292
274
|
- ext/groonga/extconf.rb
|
293
275
|
- ext/groonga/groonga.def
|
294
276
|
- README.textile
|
295
|
-
- test/test-
|
296
|
-
- test/test-accessor.rb
|
297
|
-
- test/test-database-dumper.rb
|
298
|
-
- test/test-index-column.rb
|
299
|
-
- test/groonga-test-utils.rb
|
300
|
-
- test/test-pagination.rb
|
301
|
-
- test/test-table.rb
|
302
|
-
- test/test-variable-size-column.rb
|
303
|
-
- test/test-plugin.rb
|
304
|
-
- test/test-hash.rb
|
305
|
-
- test/test-table-traverse.rb
|
306
|
-
- test/test-encoding.rb
|
307
|
-
- test/test-schema-create-table.rb
|
277
|
+
- test/test-expression.rb
|
308
278
|
- test/test-type.rb
|
309
|
-
- test/test
|
310
|
-
- test/test-
|
311
|
-
- test/test-
|
312
|
-
- test/test-
|
279
|
+
- test/run-test.rb
|
280
|
+
- test/test-schema-dumper.rb
|
281
|
+
- test/test-command-select.rb
|
282
|
+
- test/test-record.rb
|
283
|
+
- test/test-schema-create-table.rb
|
313
284
|
- test/test-geo-point.rb
|
314
|
-
- test/test-
|
285
|
+
- test/test-procedure.rb
|
315
286
|
- test/test-logger.rb
|
316
|
-
- test/test-
|
317
|
-
- test/test-record.rb
|
287
|
+
- test/test-expression-builder.rb
|
318
288
|
- test/test-column.rb
|
319
|
-
- test/test-
|
320
|
-
- test/
|
321
|
-
- test/test-
|
322
|
-
- test/test-
|
323
|
-
- test/test-
|
324
|
-
- test/test-
|
325
|
-
- test/test-
|
326
|
-
- test/test-
|
327
|
-
- test/test-
|
328
|
-
- test/test-expression.rb
|
329
|
-
- test/test-normalizer.rb
|
330
|
-
- test/test-vector-column.rb
|
331
|
-
- test/test-version.rb
|
332
|
-
- test/test-schema-view.rb
|
289
|
+
- test/test-database-dumper.rb
|
290
|
+
- test/test-accessor.rb
|
291
|
+
- test/test-table-select.rb
|
292
|
+
- test/test-array.rb
|
293
|
+
- test/test-gqtp.rb
|
294
|
+
- test/test-table-offset-and-limit.rb
|
295
|
+
- test/test-pagination.rb
|
296
|
+
- test/test-table-select-weight.rb
|
297
|
+
- test/test-variable.rb
|
333
298
|
- test/test-index-cursor.rb
|
299
|
+
- test/test-hash.rb
|
334
300
|
- test/test-double-array-trie.rb
|
335
|
-
- test/test-
|
336
|
-
- test/test-
|
301
|
+
- test/test-plugin.rb
|
302
|
+
- test/test-variable-size-column.rb
|
303
|
+
- test/groonga-test-utils.rb
|
304
|
+
- test/test-table-dumper.rb
|
305
|
+
- test/test-normalizer.rb
|
337
306
|
- test/test-schema-type.rb
|
338
|
-
- test/test-
|
339
|
-
- test/test-
|
307
|
+
- test/test-patricia-trie.rb
|
308
|
+
- test/test-version.rb
|
309
|
+
- test/test-table-traverse.rb
|
340
310
|
- test/test-context.rb
|
311
|
+
- test/test-table-select-mecab.rb
|
312
|
+
- test/test-database.rb
|
313
|
+
- test/test-table-select-normalize.rb
|
314
|
+
- test/test-table.rb
|
315
|
+
- test/test-remote.rb
|
341
316
|
- test/test-snippet.rb
|
342
|
-
- test/test-
|
317
|
+
- test/test-vector-column.rb
|
318
|
+
- test/test-fix-size-column.rb
|
319
|
+
- test/test-exception.rb
|
320
|
+
- test/test-encoding.rb
|
321
|
+
- test/test-schema.rb
|
322
|
+
- test/test-index-column.rb
|
343
323
|
- bin/grntest-log-analyze
|
344
324
|
- bin/groonga-index-dump
|
345
325
|
- bin/grndump
|
326
|
+
has_rdoc: true
|
346
327
|
homepage: http://groonga.rubyforge.org/#about-rroonga
|
347
|
-
licenses:
|
328
|
+
licenses:
|
348
329
|
- LGPLv2
|
349
330
|
post_install_message:
|
350
331
|
rdoc_options: []
|
351
|
-
|
332
|
+
|
333
|
+
require_paths:
|
352
334
|
- lib
|
353
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
335
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
354
336
|
none: false
|
355
|
-
requirements:
|
356
|
-
- -
|
357
|
-
- !ruby/object:Gem::Version
|
358
|
-
|
359
|
-
|
337
|
+
requirements:
|
338
|
+
- - ">="
|
339
|
+
- !ruby/object:Gem::Version
|
340
|
+
hash: 3
|
341
|
+
segments:
|
342
|
+
- 0
|
343
|
+
version: "0"
|
344
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
360
345
|
none: false
|
361
|
-
requirements:
|
362
|
-
- -
|
363
|
-
- !ruby/object:Gem::Version
|
364
|
-
|
346
|
+
requirements:
|
347
|
+
- - ">="
|
348
|
+
- !ruby/object:Gem::Version
|
349
|
+
hash: 3
|
350
|
+
segments:
|
351
|
+
- 0
|
352
|
+
version: "0"
|
365
353
|
requirements: []
|
354
|
+
|
366
355
|
rubyforge_project: groonga
|
367
|
-
rubygems_version: 1.
|
356
|
+
rubygems_version: 1.6.2
|
368
357
|
signing_key:
|
369
358
|
specification_version: 3
|
370
|
-
summary: Ruby bindings for groonga that provide full text search and column store
|
371
|
-
|
372
|
-
|
373
|
-
- test/test-remote.rb
|
374
|
-
- test/test-accessor.rb
|
375
|
-
- test/test-database-dumper.rb
|
376
|
-
- test/test-index-column.rb
|
377
|
-
- test/groonga-test-utils.rb
|
378
|
-
- test/test-pagination.rb
|
379
|
-
- test/test-table.rb
|
380
|
-
- test/test-variable-size-column.rb
|
381
|
-
- test/test-plugin.rb
|
382
|
-
- test/test-hash.rb
|
383
|
-
- test/test-table-traverse.rb
|
384
|
-
- test/test-encoding.rb
|
385
|
-
- test/test-schema-create-table.rb
|
359
|
+
summary: Ruby bindings for groonga that provide full text search and column store features.
|
360
|
+
test_files:
|
361
|
+
- test/test-expression.rb
|
386
362
|
- test/test-type.rb
|
387
|
-
- test/test
|
388
|
-
- test/test-
|
389
|
-
- test/test-
|
390
|
-
- test/test-
|
363
|
+
- test/run-test.rb
|
364
|
+
- test/test-schema-dumper.rb
|
365
|
+
- test/test-command-select.rb
|
366
|
+
- test/test-record.rb
|
367
|
+
- test/test-schema-create-table.rb
|
391
368
|
- test/test-geo-point.rb
|
392
|
-
- test/test-
|
369
|
+
- test/test-procedure.rb
|
393
370
|
- test/test-logger.rb
|
394
|
-
- test/test-
|
395
|
-
- test/test-record.rb
|
371
|
+
- test/test-expression-builder.rb
|
396
372
|
- test/test-column.rb
|
397
|
-
- test/test-
|
398
|
-
- test/
|
399
|
-
- test/test-
|
400
|
-
- test/test-
|
401
|
-
- test/test-
|
402
|
-
- test/test-
|
403
|
-
- test/test-
|
404
|
-
- test/test-
|
405
|
-
- test/test-
|
406
|
-
- test/test-expression.rb
|
407
|
-
- test/test-normalizer.rb
|
408
|
-
- test/test-vector-column.rb
|
409
|
-
- test/test-version.rb
|
410
|
-
- test/test-schema-view.rb
|
373
|
+
- test/test-database-dumper.rb
|
374
|
+
- test/test-accessor.rb
|
375
|
+
- test/test-table-select.rb
|
376
|
+
- test/test-array.rb
|
377
|
+
- test/test-gqtp.rb
|
378
|
+
- test/test-table-offset-and-limit.rb
|
379
|
+
- test/test-pagination.rb
|
380
|
+
- test/test-table-select-weight.rb
|
381
|
+
- test/test-variable.rb
|
411
382
|
- test/test-index-cursor.rb
|
383
|
+
- test/test-hash.rb
|
412
384
|
- test/test-double-array-trie.rb
|
413
|
-
- test/test-
|
414
|
-
- test/test-
|
385
|
+
- test/test-plugin.rb
|
386
|
+
- test/test-variable-size-column.rb
|
387
|
+
- test/groonga-test-utils.rb
|
388
|
+
- test/test-table-dumper.rb
|
389
|
+
- test/test-normalizer.rb
|
415
390
|
- test/test-schema-type.rb
|
416
|
-
- test/test-
|
417
|
-
- test/test-
|
391
|
+
- test/test-patricia-trie.rb
|
392
|
+
- test/test-version.rb
|
393
|
+
- test/test-table-traverse.rb
|
418
394
|
- test/test-context.rb
|
395
|
+
- test/test-table-select-mecab.rb
|
396
|
+
- test/test-database.rb
|
397
|
+
- test/test-table-select-normalize.rb
|
398
|
+
- test/test-table.rb
|
399
|
+
- test/test-remote.rb
|
419
400
|
- test/test-snippet.rb
|
420
|
-
- test/test-
|
421
|
-
|
401
|
+
- test/test-vector-column.rb
|
402
|
+
- test/test-fix-size-column.rb
|
403
|
+
- test/test-exception.rb
|
404
|
+
- test/test-encoding.rb
|
405
|
+
- test/test-schema.rb
|
406
|
+
- test/test-index-column.rb
|