arvados-google-api-client 0.8.7.2 → 0.8.7.3
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 +5 -5
- data/lib/google/api_client.rb +7 -1
- data/lib/google/api_client/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 4a511fbbb93423a287e471c9545d4908c62307a9a296faa83538b2840c4ecf77
|
|
4
|
+
data.tar.gz: 3123be70f8e427ca5072c66387bdb290454e30d77677c38afd0f40ab53aaa84d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: db4f1f8a83173ae9c748fecf53d2ec8ff8632f35e217aca1c9fd310aa2f63d5e07c7f2b6d0e14be014dfa31f015a4b0f35a909afd18c733dfc9e995097f353f0
|
|
7
|
+
data.tar.gz: 339f668ac65a4ea96e67bb2b05c713daa0ce550ea034838c9c3e8f61cee7ce96ea71cac92626d6eb1e172acb8095bea58e00c85d9bdad98660db6e4b6393c6e7
|
data/lib/google/api_client.rb
CHANGED
|
@@ -135,7 +135,13 @@ module Google
|
|
|
135
135
|
faraday.options.params_encoder = Faraday::FlatParamsEncoder
|
|
136
136
|
faraday.ssl.ca_file = ca_file
|
|
137
137
|
faraday.ssl.verify = true
|
|
138
|
-
faraday.proxy
|
|
138
|
+
if faraday.respond_to?(:proxy=)
|
|
139
|
+
# faraday >= 0.6.2
|
|
140
|
+
faraday.proxy = proxy
|
|
141
|
+
else
|
|
142
|
+
# older versions of faraday
|
|
143
|
+
faraday.proxy proxy
|
|
144
|
+
end
|
|
139
145
|
faraday.adapter Faraday.default_adapter
|
|
140
146
|
if options[:faraday_option].is_a?(Hash)
|
|
141
147
|
options[:faraday_option].each_pair do |option, value|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: arvados-google-api-client
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.8.7.
|
|
4
|
+
version: 0.8.7.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Bob Aman
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2019-
|
|
12
|
+
date: 2019-10-04 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: addressable
|
|
@@ -331,7 +331,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
331
331
|
version: 1.3.5
|
|
332
332
|
requirements: []
|
|
333
333
|
rubyforge_project:
|
|
334
|
-
rubygems_version: 2.
|
|
334
|
+
rubygems_version: 2.7.6.2
|
|
335
335
|
signing_key:
|
|
336
336
|
specification_version: 4
|
|
337
337
|
summary: The Google API Ruby Client makes it trivial to discover and access Google's
|