grntest 1.1.8 → 1.1.9
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 +6 -0
- data/lib/grntest/executors/base-executor.rb +2 -2
- data/lib/grntest/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: d61393e0186647b014a4b66f3410d5f419a00438
|
4
|
+
data.tar.gz: 6a1504fa74e60166dd9846e0b620f9d98b701f6f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c38aebc58a3d4b0d3140ab69fbc3ab2ce433b8f2db3f6248fedc27773c1bba0b3dcc7e5b0cd47d9ba4f0763f4095dd3eab74b95ec46a66362b6065add32fde55
|
7
|
+
data.tar.gz: 5190437778add09f73751040dc418f9b219d209ba79d81ddb67dc81152398a250d04380e109ccaac158f5439fb3380054a5bdcf183b3d2e02550bc3b8599b906
|
data/doc/text/news.md
CHANGED
@@ -403,12 +403,12 @@ module Grntest
|
|
403
403
|
timeout = first_timeout
|
404
404
|
while IO.select([output], [], [], timeout)
|
405
405
|
break if output.eof?
|
406
|
-
request_bytes =
|
406
|
+
request_bytes = 4096
|
407
407
|
read_content = output.readpartial(request_bytes)
|
408
|
+
debug_output(read_content)
|
408
409
|
content << read_content
|
409
410
|
timeout = 0 if read_content.bytesize < request_bytes
|
410
411
|
end
|
411
|
-
debug_output(content)
|
412
412
|
content
|
413
413
|
end
|
414
414
|
|
data/lib/grntest/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: grntest
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.
|
4
|
+
version: 1.1.9
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Kouhei Sutou
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2016-05-
|
12
|
+
date: 2016-05-17 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: json
|