groonga-client 0.2.6 → 0.2.7
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/doc/text/news.md +7 -0
- data/lib/groonga/client/protocol/http/synchronous.rb +5 -1
- data/lib/groonga/client/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 67e208675166b5145f2f6aac4d0bc0354741be56
|
4
|
+
data.tar.gz: 1cb1905f24e1e1da9e89854adb2c7d0005896ec8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1f30907804cd22d7ad8ea20a096386cc8711e790a1679393280c74f267a3d96776b68529f5ab0d304ac6a681684841e20d3f959fcf248a096867a9d0946721fe
|
7
|
+
data.tar.gz: 36717b424a2160a875f457dd74a4f16d5d7e2025cf633241975b6afd35ec1d5bfea583949635967579dd715e3f5605239e0ca4b5a59d1c4e5e6c3e96ade699b4
|
data/doc/text/news.md
CHANGED
@@ -126,7 +126,11 @@ module Groonga
|
|
126
126
|
command[:values] = raw_values
|
127
127
|
request = Net::HTTP::Post.new(path, headers)
|
128
128
|
request.content_type = "application/json"
|
129
|
-
|
129
|
+
if @options[:chunk]
|
130
|
+
request["Transfer-Encoding"] = "chunked"
|
131
|
+
else
|
132
|
+
request.content_length = raw_values.bytesize
|
133
|
+
end
|
130
134
|
request.body_stream = StringIO.new(raw_values)
|
131
135
|
else
|
132
136
|
path = resolve_path(@url, command.to_uri_format)
|
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.2.
|
4
|
+
version: 0.2.7
|
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-
|
13
|
+
date: 2016-08-19 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: gqtp
|