http_client 0.5.3-java → 0.5.4-java
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/README.md +1 -1
- data/http_client.gemspec +1 -1
- data/lib/http_client.rb +1 -0
- data/vendor/httpasyncclient-4.0.jar +0 -0
- data/vendor/httpcore-nio-4.3.jar +0 -0
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 51242d89a295db59baa72ae7451e6f22f710e514
|
|
4
|
+
data.tar.gz: 6647cd9d91a05ac67eacef9c7d9a505b032b541b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fb597cf32d364c50622813ad3b33c440c492ab5a2f48424af36ee59beedeced1532bee104a12271d8862a78d0e56f93bd63170d8074f0ed607f750c2c228c222
|
|
7
|
+
data.tar.gz: 4c2e75839a88e01cb06045c6c989eeef925bc898396f1e6d9d8dbc7aa12f0cfad83d95e755e7f439b61a5e08305d61c4b4bf3fd0c59e762c2d25d59fce0c11a9
|
data/README.md
CHANGED
|
@@ -78,7 +78,7 @@ Before you start hacking away, [have a look at the issues](https://github.com/Ov
|
|
|
78
78
|
|
|
79
79
|
Just create a fork and send me a pull request. I would be honored to look at your input.
|
|
80
80
|
|
|
81
|
-

|
|
81
|
+
[](https://travis-ci.org/Overbryd/http_client)
|
|
82
82
|
|
|
83
83
|
## Legal
|
|
84
84
|
|
data/http_client.gemspec
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
s.name = "http_client"
|
|
3
|
-
s.version = "0.5.
|
|
3
|
+
s.version = "0.5.4"
|
|
4
4
|
s.date = "2013-11-08"
|
|
5
5
|
s.summary = "HTTP client for JRuby"
|
|
6
6
|
s.description = "This library wraps the Apache HTTPClient (4.3) in a simple fashion. The library is intended to be used in a multithreaded environment."
|
data/lib/http_client.rb
CHANGED
|
@@ -226,6 +226,7 @@ private
|
|
|
226
226
|
connection_manager = PoolingHttpClientConnectionManager.new
|
|
227
227
|
connection_manager.max_total = options[:max_connections]
|
|
228
228
|
connection_manager.default_max_per_route = options[:max_connections_per_route] || options[:max_connections]
|
|
229
|
+
connection_manager
|
|
229
230
|
end
|
|
230
231
|
|
|
231
232
|
end
|
|
Binary file
|
|
Binary file
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: http_client
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.5.
|
|
4
|
+
version: 0.5.4
|
|
5
5
|
platform: java
|
|
6
6
|
authors:
|
|
7
7
|
- Lukas Rieder
|
|
@@ -24,8 +24,10 @@ files:
|
|
|
24
24
|
- lib/http_client.rb
|
|
25
25
|
- test/http_client_test.rb
|
|
26
26
|
- vendor/commons-logging-1.1.3.jar
|
|
27
|
+
- vendor/httpasyncclient-4.0.jar
|
|
27
28
|
- vendor/httpclient-4.3.1.jar
|
|
28
29
|
- vendor/httpcore-4.3.jar
|
|
30
|
+
- vendor/httpcore-nio-4.3.jar
|
|
29
31
|
- vendor/httpmime-4.3.1.jar
|
|
30
32
|
homepage: https://github.com/Overbryd/http_client
|
|
31
33
|
licenses:
|
|
@@ -54,4 +56,3 @@ signing_key:
|
|
|
54
56
|
specification_version: 4
|
|
55
57
|
summary: HTTP client for JRuby
|
|
56
58
|
test_files: []
|
|
57
|
-
has_rdoc:
|