groonga-client 0.3.3 → 0.3.4
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.
- checksums.yaml +4 -4
- data/doc/text/news.md +13 -0
- data/lib/groonga/client.rb +1 -1
- data/lib/groonga/client/request.rb +22 -0
- data/lib/groonga/client/request/base.rb +174 -0
- data/lib/groonga/client/request/error.rb +39 -0
- data/lib/groonga/client/request/select.rb +292 -0
- data/lib/groonga/client/response/schema.rb +25 -9
- data/lib/groonga/client/response/select.rb +64 -2
- data/lib/groonga/client/spec-helper.rb +37 -0
- data/lib/groonga/client/test-helper.rb +37 -0
- data/lib/groonga/client/test/fixture.rb +35 -0
- data/lib/groonga/client/test/groonga-server-runner.rb +158 -0
- data/lib/groonga/client/version.rb +1 -1
- data/test/request/select/test-filter-parameter.rb +97 -0
- data/test/request/select/test-output-columns-parameter.rb +75 -0
- data/test/request/select/test-sort-keys-columns-parameter.rb +74 -0
- data/test/request/select/test-values-parameter.rb +58 -0
- data/test/request/test-base.rb +50 -0
- data/test/request/test-select.rb +131 -0
- data/test/response/test-schema.rb +342 -0
- data/test/response/test-select-command-version1.rb +68 -0
- data/test/response/test-select-command-version3.rb +70 -0
- data/test/run-test.rb +1 -0
- metadata +36 -16
data/test/run-test.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: groonga-client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Haruka Yoshihara
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2016-12-
|
13
|
+
date: 2016-12-13 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: gqtp
|
@@ -183,6 +183,10 @@ files:
|
|
183
183
|
- lib/groonga/client/protocol/http/path-resolvable.rb
|
184
184
|
- lib/groonga/client/protocol/http/synchronous.rb
|
185
185
|
- lib/groonga/client/protocol/http/thread.rb
|
186
|
+
- lib/groonga/client/request.rb
|
187
|
+
- lib/groonga/client/request/base.rb
|
188
|
+
- lib/groonga/client/request/error.rb
|
189
|
+
- lib/groonga/client/request/select.rb
|
186
190
|
- lib/groonga/client/response.rb
|
187
191
|
- lib/groonga/client/response/base.rb
|
188
192
|
- lib/groonga/client/response/cache-limit.rb
|
@@ -209,9 +213,19 @@ files:
|
|
209
213
|
- lib/groonga/client/response/table-list.rb
|
210
214
|
- lib/groonga/client/response/table-remove.rb
|
211
215
|
- lib/groonga/client/script-syntax.rb
|
216
|
+
- lib/groonga/client/spec-helper.rb
|
217
|
+
- lib/groonga/client/test-helper.rb
|
218
|
+
- lib/groonga/client/test/fixture.rb
|
219
|
+
- lib/groonga/client/test/groonga-server-runner.rb
|
212
220
|
- lib/groonga/client/version.rb
|
213
221
|
- test/protocol/test-gqtp.rb
|
214
222
|
- test/protocol/test-http.rb
|
223
|
+
- test/request/select/test-filter-parameter.rb
|
224
|
+
- test/request/select/test-output-columns-parameter.rb
|
225
|
+
- test/request/select/test-sort-keys-columns-parameter.rb
|
226
|
+
- test/request/select/test-values-parameter.rb
|
227
|
+
- test/request/test-base.rb
|
228
|
+
- test/request/test-select.rb
|
215
229
|
- test/response/helper.rb
|
216
230
|
- test/response/test-base.rb
|
217
231
|
- test/response/test-column-list.rb
|
@@ -250,29 +264,35 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
250
264
|
version: '0'
|
251
265
|
requirements: []
|
252
266
|
rubyforge_project:
|
253
|
-
rubygems_version: 2.5.
|
267
|
+
rubygems_version: 2.5.1
|
254
268
|
signing_key:
|
255
269
|
specification_version: 4
|
256
270
|
summary: Groonga-client is a client for Groonga (http://groonga.org/) implemented
|
257
271
|
with pure Ruby. You can use it without Groonga.
|
258
272
|
test_files:
|
259
|
-
- test/test-client.rb
|
260
273
|
- test/test-script-syntax.rb
|
261
|
-
- test/test-
|
274
|
+
- test/results/test-column-list.rb
|
275
|
+
- test/results/test-table-list.rb
|
276
|
+
- test/request/select/test-filter-parameter.rb
|
277
|
+
- test/request/select/test-values-parameter.rb
|
278
|
+
- test/request/select/test-sort-keys-columns-parameter.rb
|
279
|
+
- test/request/select/test-output-columns-parameter.rb
|
280
|
+
- test/request/test-select.rb
|
281
|
+
- test/request/test-base.rb
|
282
|
+
- test/run-test.rb
|
283
|
+
- test/test-client.rb
|
262
284
|
- test/protocol/test-gqtp.rb
|
263
285
|
- test/protocol/test-http.rb
|
264
|
-
- test/
|
265
|
-
- test/response/test-
|
266
|
-
- test/response/test-
|
267
|
-
- test/response/test-column-list.rb
|
286
|
+
- test/test-command.rb
|
287
|
+
- test/response/test-select-command-version3.rb
|
288
|
+
- test/response/test-table-remove.rb
|
268
289
|
- test/response/helper.rb
|
269
|
-
- test/response/test-
|
290
|
+
- test/response/test-column-list.rb
|
270
291
|
- test/response/test-table-list.rb
|
292
|
+
- test/response/test-table-create.rb
|
293
|
+
- test/response/test-load.rb
|
294
|
+
- test/response/test-base.rb
|
271
295
|
- test/response/test-status.rb
|
272
|
-
- test/response/test-schema.rb
|
273
|
-
- test/response/test-select-command-version3.rb
|
274
296
|
- test/response/test-select-command-version1.rb
|
275
|
-
- test/response/test-
|
276
|
-
- test/response/test-
|
277
|
-
- test/results/test-column-list.rb
|
278
|
-
- test/results/test-table-list.rb
|
297
|
+
- test/response/test-schema.rb
|
298
|
+
- test/response/test-error.rb
|