groonga-client 0.6.8 → 0.6.9
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 +6 -0
- data/lib/groonga/client/protocol/http/synchronous.rb +10 -6
- data/lib/groonga/client/version.rb +2 -2
- metadata +3 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e6da9f45867a1b6ba3343309e8935b8efdc8b9d3c8d35d7dec702738b38829a7
|
|
4
|
+
data.tar.gz: 29178875a3d700f8b17c2c1cfab67c37baf86a811af258e5bb2069916d90de24
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b351339a18628c2230cdc20714cbc82517cbc46618860a3cac0f31d3a75ffaae2181771affbe17a9a61575cecbc071a284f040436fa59efe30450b82f12d8cc3
|
|
7
|
+
data.tar.gz: a8c6326cbfb48225dc799915867c3757c05d824f02ec79fa510407d306431fba0745c5aba7a1ad1c8ba5382e58b97c0e469299ea8c5e8c855ef9e211f2538021
|
data/doc/text/news.md
CHANGED
|
@@ -66,15 +66,19 @@ module Groonga
|
|
|
66
66
|
http.start do
|
|
67
67
|
http.read_timeout = read_timeout
|
|
68
68
|
response = send_request(http, command)
|
|
69
|
+
body = response.body
|
|
69
70
|
case response
|
|
70
|
-
when Net::HTTPSuccess,
|
|
71
|
-
|
|
71
|
+
when Net::HTTPSuccess,
|
|
72
|
+
Net::HTTPBadRequest, # for invalid request
|
|
73
|
+
Net::HTTPRequestTimeOut # for canceled request
|
|
74
|
+
yield(body)
|
|
72
75
|
else
|
|
73
|
-
|
|
74
|
-
|
|
76
|
+
# "[[" is for command_version=1
|
|
77
|
+
# "{" is for command_version=3
|
|
78
|
+
if body.start_with?("[[") or body.start_with?("{")
|
|
79
|
+
yield(body)
|
|
75
80
|
else
|
|
76
|
-
message =
|
|
77
|
-
"#{response.code} #{response.message}: #{response.body}"
|
|
81
|
+
message = "#{response.code} #{response.message}: #{body}"
|
|
78
82
|
raise Error.new(message)
|
|
79
83
|
end
|
|
80
84
|
end
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Copyright (C) 2013-
|
|
1
|
+
# Copyright (C) 2013-2023 Sutou Kouhei <kou@clear-code.com>
|
|
2
2
|
#
|
|
3
3
|
# This library is free software; you can redistribute it and/or
|
|
4
4
|
# modify it under the terms of the GNU Lesser General Public
|
|
@@ -16,6 +16,6 @@
|
|
|
16
16
|
|
|
17
17
|
module Groonga
|
|
18
18
|
class Client
|
|
19
|
-
VERSION = "0.6.
|
|
19
|
+
VERSION = "0.6.9"
|
|
20
20
|
end
|
|
21
21
|
end
|
metadata
CHANGED
|
@@ -1,16 +1,15 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: groonga-client
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.6.
|
|
4
|
+
version: 0.6.9
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Haruka Yoshihara
|
|
8
8
|
- Kouhei Sutou
|
|
9
9
|
- Kosuke Asami
|
|
10
|
-
autorequire:
|
|
11
10
|
bindir: bin
|
|
12
11
|
cert_chain: []
|
|
13
|
-
date:
|
|
12
|
+
date: 2024-04-10 00:00:00.000000000 Z
|
|
14
13
|
dependencies:
|
|
15
14
|
- !ruby/object:Gem::Dependency
|
|
16
15
|
name: gqtp
|
|
@@ -286,7 +285,6 @@ homepage: https://github.com/ranguba/groonga-client
|
|
|
286
285
|
licenses:
|
|
287
286
|
- LGPLv2.1+
|
|
288
287
|
metadata: {}
|
|
289
|
-
post_install_message:
|
|
290
288
|
rdoc_options: []
|
|
291
289
|
require_paths:
|
|
292
290
|
- lib
|
|
@@ -301,8 +299,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
301
299
|
- !ruby/object:Gem::Version
|
|
302
300
|
version: '0'
|
|
303
301
|
requirements: []
|
|
304
|
-
rubygems_version: 3.
|
|
305
|
-
signing_key:
|
|
302
|
+
rubygems_version: 3.6.0.dev
|
|
306
303
|
specification_version: 4
|
|
307
304
|
summary: Groonga-client is a client for Groonga (http://groonga.org/) implemented
|
|
308
305
|
with pure Ruby. You can use it without Groonga.
|