maxipago 0.1.27 → 0.1.28
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/lib/maxipago/version.rb +1 -1
- data/lib/maxipago/xml_builder/builder_transaction.rb +6 -0
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2197e15a551775e749d94a004ed87360d7b51b6012738070b5be5c9ca1e0ff0c
|
4
|
+
data.tar.gz: 2e8f79c50c5c29074a92554746d260974a17c6810c9ceca3e8df78ec9488aca7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1a0aac89a92927f4d8f273923eb1e99d7cfd3e380f679039cf5b7ab836816b1cf217ced9c686c98e6566166bf21411e094dccf480d6320a047332483625d78a3
|
7
|
+
data.tar.gz: 31d131305b620aeb014a837c24b6466cc0961b33eedf264b90e178f169c5b418404b3566be98f89874072a7f4f23867f5a02d43ebb47a1ba7a12f1e25edae3ed
|
data/lib/maxipago/version.rb
CHANGED
@@ -344,6 +344,7 @@ module Maxipago
|
|
344
344
|
xml.name self.options[:billing_name]
|
345
345
|
xml.address self.options[:billing_address] unless self.options[:billing_address].nil?
|
346
346
|
xml.address2 self.options[:billing_address2] unless self.options[:billing_address2].nil?
|
347
|
+
xml.district self.options[:billing_district] unless self.options[:billing_district].nil?
|
347
348
|
xml.city self.options[:billing_city] unless self.options[:billing_city].nil?
|
348
349
|
xml.state self.options[:billing_state] unless self.options[:billing_state].nil?
|
349
350
|
xml.postalcode self.options[:billing_postalcode] unless self.options[:billing_postalcode].nil?
|
@@ -357,6 +358,7 @@ module Maxipago
|
|
357
358
|
xml.name self.options[:shipping_name]
|
358
359
|
xml.address self.options[:shipping_address] unless self.options[:shipping_address].nil?
|
359
360
|
xml.address2 self.options[:shipping_address2] unless self.options[:shipping_address2].nil?
|
361
|
+
xml.district self.options[:shipping_district] unless self.options[:shipping_district].nil?
|
360
362
|
xml.city self.options[:shipping_city] unless self.options[:shipping_city].nil?
|
361
363
|
xml.state self.options[:shipping_state] unless self.options[:shipping_state].nil?
|
362
364
|
xml.postalcode self.options[:shipping_postalcode] unless self.options[:shipping_postalcode].nil?
|
@@ -385,6 +387,7 @@ module Maxipago
|
|
385
387
|
}
|
386
388
|
xml.payment {
|
387
389
|
xml.chargeTotal self.options[:charge_total]
|
390
|
+
xml.currencyCode self.options[:currency_code] unless self.options[:currency_code].nil?
|
388
391
|
}
|
389
392
|
xml.recurring {
|
390
393
|
xml.action "new"
|
@@ -392,6 +395,9 @@ module Maxipago
|
|
392
395
|
xml.frequency self.options[:frequency]
|
393
396
|
xml.period self.options[:period]
|
394
397
|
xml.installments self.options[:installments]
|
398
|
+
xml.firstAmount self.options[:first_amount]
|
399
|
+
xml.lastAmount self.options[:last_amount]
|
400
|
+
xml.lastDate self.options[:last_date]
|
395
401
|
xml.failureThreshold self.options[:failure_threshold]
|
396
402
|
}
|
397
403
|
}
|