groonga-client 0.3.3 → 0.3.4

Sign up to get free protection for your applications and to get access to all the features.
data/test/run-test.rb CHANGED
@@ -41,6 +41,7 @@ test_dir = base_dir + "test"
41
41
  $LOAD_PATH.unshift(lib_dir.to_s)
42
42
 
43
43
  require "test-unit"
44
+ require "groonga/client"
44
45
 
45
46
  Thread.abort_on_exception = true
46
47
 
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.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-07 00:00:00.000000000 Z
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.2
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-command.rb
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/run-test.rb
265
- - test/response/test-base.rb
266
- - test/response/test-load.rb
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-error.rb
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-table-create.rb
276
- - test/response/test-table-remove.rb
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