http 1.0.0.pre2 → 1.0.0.pre3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGES.md +4 -0
- data/lib/http/response/body.rb +1 -1
- data/lib/http/version.rb +1 -1
- data/spec/support/http_handling_shared.rb +4 -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: 6e1927443d777f84c1531531c9dec4e0b6eba9ff
|
4
|
+
data.tar.gz: 4ac6e616a529191f56f7af34dd71e3fb93667155
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2f9b035441245faf2b3124cf4c2562b705ac74d1522f75216f31d7dcff91779acae067845127b0cca63ccf0159567ae11ed94408425cf4626d072178ed09d4a1
|
7
|
+
data.tar.gz: 44745a975c4fe5595857ed2214cdc9ec1d7caf0bb5c146270a2a9630574955d2ad33b63a600d8c9d0c2898facb59bd8cfc9f9685c972a66e8c4c23532a4659c1
|
data/CHANGES.md
CHANGED
@@ -30,6 +30,10 @@
|
|
30
30
|
Support for disabling Nagle's algorithm with `HTTP.nodelay`.
|
31
31
|
([@nerdrew])
|
32
32
|
|
33
|
+
* [#276](https://github.com/httprb/http/pull/276)
|
34
|
+
Use Encoding::BINARY as the default encoding for HTTP::Response::Body.
|
35
|
+
([@tarcieri])
|
36
|
+
|
33
37
|
## 0.9.8 (2015-09-29)
|
34
38
|
|
35
39
|
* [#260](https://github.com/httprb/http/pull/258):
|
data/lib/http/response/body.rb
CHANGED
data/lib/http/version.rb
CHANGED
@@ -59,6 +59,9 @@ RSpec.shared_context "HTTP handling" do
|
|
59
59
|
let(:read_timeout) { 2.5 }
|
60
60
|
|
61
61
|
it "does not time out" do
|
62
|
+
# TODO: investigate sporadic JRuby timeouts on CI
|
63
|
+
skip "flaky environment" if flaky_env?
|
64
|
+
|
62
65
|
expect { client.get("#{server.endpoint}/sleep").body.to_s }.to_not raise_error
|
63
66
|
end
|
64
67
|
end
|
@@ -94,7 +97,7 @@ RSpec.shared_context "HTTP handling" do
|
|
94
97
|
|
95
98
|
it "does not timeout" do
|
96
99
|
# TODO: investigate sporadic JRuby timeouts on CI
|
97
|
-
skip if
|
100
|
+
skip "flaky environment" if flaky_env?
|
98
101
|
|
99
102
|
client.get("#{server.endpoint}/sleep").body.to_s
|
100
103
|
client.get("#{server.endpoint}/sleep").body.to_s
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: http
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.0.
|
4
|
+
version: 1.0.0.pre3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tony Arcieri
|
@@ -183,7 +183,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
183
183
|
version: 1.3.1
|
184
184
|
requirements: []
|
185
185
|
rubyforge_project:
|
186
|
-
rubygems_version: 2.4.
|
186
|
+
rubygems_version: 2.4.5.1
|
187
187
|
signing_key:
|
188
188
|
specification_version: 4
|
189
189
|
summary: HTTP should be easy
|