zuora_api 0.2.5.7 → 0.2.5.8
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 +2 -2
- data/lib/zuora_api/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 47a6f7b059dae5490a911cb2f6dff072190f09f1
|
|
4
|
+
data.tar.gz: 5d9a1afa6be9f5a97fac40844da14c3a2f99756c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 93aed68ae3840ce6ade53b1430ddcf3cff5fdaee85dbd4fa44d29666129db195fba5da1aa92edf5e519efd42d45344d82b8d2c7c5d65e40fab740994ec2e4342
|
|
7
|
+
data.tar.gz: d35e6ac5454d4f5c28a9661cc5efd964dd8f7e7c2b8c004658492643b3001a9d030a362479775ec9e2193849d9ce9410c67591e5485097341f746b4a1b37190a
|
data/Gemfile.lock
CHANGED
data/lib/zuora_api/login.rb
CHANGED
|
@@ -13,7 +13,7 @@ module ZuoraAPI
|
|
|
13
13
|
@entity_id = entity_id
|
|
14
14
|
@current_session = session
|
|
15
15
|
@errors = Hash.new
|
|
16
|
-
@status = "
|
|
16
|
+
@status = "Active"
|
|
17
17
|
@user_info = Hash.new
|
|
18
18
|
self.update_environment
|
|
19
19
|
end
|
|
@@ -162,7 +162,7 @@ module ZuoraAPI
|
|
|
162
162
|
return self.current_session
|
|
163
163
|
end
|
|
164
164
|
|
|
165
|
-
def soap_call(ns1: 'ns1', ns2: 'ns2', batch_size: nil, single_transaction: false,debug:
|
|
165
|
+
def soap_call(ns1: 'ns1', ns2: 'ns2', batch_size: nil, single_transaction: false,debug: true, **keyword_args)
|
|
166
166
|
tries ||= 2
|
|
167
167
|
xml = Nokogiri::XML::Builder.new do |xml|
|
|
168
168
|
xml['SOAP-ENV'].Envelope('xmlns:SOAP-ENV' => "http://schemas.xmlsoap.org/soap/envelope/",
|
data/lib/zuora_api/version.rb
CHANGED