zuora_api 1.6.48 → 1.6.49
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/Gemfile.lock +1 -1
- data/lib/zuora_api/login.rb +1 -1
- data/lib/zuora_api/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 761c31a16d3bb902d34f9689c80b811fa081003d5b9ec9f9c99a0befe7ee86e9
|
4
|
+
data.tar.gz: 38049f0e92c089c895dc632b957d08497ecda3c90f28d735653c27b2f59f2d2d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4c581cb068c93de49b2a605d1599296e28c516e8746e8633ec8f565c80fcc575325d1ae76898a25db6e9c54e761a15d66851fc6cadf9a51125c1a1be7136add7
|
7
|
+
data.tar.gz: 2ea8f307e456a06f896ecebe48f0d04f976b356544954f427ea4e7e1836a888f662b737c7877b2e3a65f1e8ae0de63aeb7dcd69b7b2e4ec01094ada25afb0148
|
data/Gemfile.lock
CHANGED
data/lib/zuora_api/login.rb
CHANGED
@@ -893,7 +893,7 @@ module ZuoraAPI
|
|
893
893
|
uri = URI.parse(url)
|
894
894
|
http = Net::HTTP.new(uri.host, uri.port)
|
895
895
|
http.read_timeout = timeout #Seconds
|
896
|
-
http.use_ssl = true if uri.scheme.downcase == 'https'
|
896
|
+
http.use_ssl = true if !uri.scheme.nil? && uri.scheme.downcase == 'https'
|
897
897
|
if z_session
|
898
898
|
headers = headers.merge({"Authorization" => self.get_session(prefix: true)})
|
899
899
|
headers = headers.merge({"Zuora-Entity-Ids" => self.entity_id}) if !self.entity_id.blank?
|
data/lib/zuora_api/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: zuora_api
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.6.
|
4
|
+
version: 1.6.49
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Zuora Strategic Solutions Group
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-
|
11
|
+
date: 2019-07-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|