http_api_client 0.2.3 → 0.2.4
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 +8 -8
- data/http_api_client.gemspec +1 -1
- data/lib/http_api_client/connection_factory.rb +1 -1
- data/lib/http_api_client/version.rb +1 -1
- metadata +2 -16
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
OTg5NDYyYWFiNzJiOGU2YWZlODM4NzhkYjllNmVhZGQ1MTVkMDU3Mg==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
NjJhZmQ1YTM0NTEzMTQ0ZjA5NWM5M2NhNDI2ZDBkMzE0YTA0MmZkZg==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
NTZmMzRiNmY1MDY3MzQ3OTExNDRlZmE2MDk5ZWJlMGIzMTYyYTZkNzYwMDNm
|
10
|
+
ZDM1NmNkZTRmYmJiMGViYWY4MjJjNjQ0MjUwNTc1MDljN2UzMjBiOGM5Y2Uy
|
11
|
+
ZDZmZDY2NGQ1OTZkOTE2ZTZlNmMxY2FhZTVmYjhiYzA1YWViZmM=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
MDcyYzRjMTkwNTI5MTUxZTk2YjgyZWRlZjgxZGM3N2ZmNGQ4MjA3MDVhNDli
|
14
|
+
NTU1ZmM0MmVjMmUzZWQxYzA5MGY5ZDFjNDhlODdjMDczNjk3Y2FjODZhODNi
|
15
|
+
YTJmNDM1ODNkYzY1YTAzM2RlOWQ1NzJjZTZkYTc4ZDlkMzg4ZWI=
|
data/http_api_client.gemspec
CHANGED
@@ -26,7 +26,7 @@ Gem::Specification.new do |spec|
|
|
26
26
|
|
27
27
|
spec.add_dependency 'activesupport', '>= 3.1'
|
28
28
|
spec.add_dependency 'faraday', '~> 0.9'
|
29
|
-
spec.add_dependency 'net-http-persistent', '~> 2.9'
|
29
|
+
# spec.add_dependency 'net-http-persistent', '~> 2.9'
|
30
30
|
spec.add_dependency 'oj', '~> 2.7'
|
31
31
|
|
32
32
|
end
|
@@ -16,7 +16,7 @@ module HttpApiClient
|
|
16
16
|
Faraday.new(connection_options) do |connection|
|
17
17
|
connection.port = config.port if config.port
|
18
18
|
connection.request :url_encoded # form-encode POST params
|
19
|
-
connection.adapter :
|
19
|
+
connection.adapter :net_http
|
20
20
|
# connection.use :http_cache
|
21
21
|
# connection.response :logger
|
22
22
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: http_api_client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Rob Monie
|
@@ -11,7 +11,7 @@ authors:
|
|
11
11
|
autorequire:
|
12
12
|
bindir: bin
|
13
13
|
cert_chain: []
|
14
|
-
date: 2014-05-
|
14
|
+
date: 2014-05-06 00:00:00.000000000 Z
|
15
15
|
dependencies:
|
16
16
|
- !ruby/object:Gem::Dependency
|
17
17
|
name: bundler
|
@@ -111,20 +111,6 @@ dependencies:
|
|
111
111
|
- - ~>
|
112
112
|
- !ruby/object:Gem::Version
|
113
113
|
version: '0.9'
|
114
|
-
- !ruby/object:Gem::Dependency
|
115
|
-
name: net-http-persistent
|
116
|
-
requirement: !ruby/object:Gem::Requirement
|
117
|
-
requirements:
|
118
|
-
- - ~>
|
119
|
-
- !ruby/object:Gem::Version
|
120
|
-
version: '2.9'
|
121
|
-
type: :runtime
|
122
|
-
prerelease: false
|
123
|
-
version_requirements: !ruby/object:Gem::Requirement
|
124
|
-
requirements:
|
125
|
-
- - ~>
|
126
|
-
- !ruby/object:Gem::Version
|
127
|
-
version: '2.9'
|
128
114
|
- !ruby/object:Gem::Dependency
|
129
115
|
name: oj
|
130
116
|
requirement: !ruby/object:Gem::Requirement
|