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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4e857613289b260fdb1e1f74cb087e3a9d12f88a1a484b0e4c60236bb55f8cd6
4
- data.tar.gz: f6d56595c588c4c32b5e11c835602888085698157e46f70681cefeb89a26a63b
3
+ metadata.gz: 2197e15a551775e749d94a004ed87360d7b51b6012738070b5be5c9ca1e0ff0c
4
+ data.tar.gz: 2e8f79c50c5c29074a92554746d260974a17c6810c9ceca3e8df78ec9488aca7
5
5
  SHA512:
6
- metadata.gz: 95951362a7032986f5bc841767d4190c07dbf43666ac34b34ca582cb03a5d9b7ef8b8635e7959cc842081f5bbbfd6a7e86436f0d39af3b2d18cf6f5787ebcd73
7
- data.tar.gz: 394bd10babfa2989a2faacf6f247820ad44f6f35595b9eca50a2bf47f2302e7337c70c41825d848b40e6ef79e17f6750ef8b21f5a1e0ef83ba757287b5e6dfb9
6
+ metadata.gz: 1a0aac89a92927f4d8f273923eb1e99d7cfd3e380f679039cf5b7ab836816b1cf217ced9c686c98e6566166bf21411e094dccf480d6320a047332483625d78a3
7
+ data.tar.gz: 31d131305b620aeb014a837c24b6466cc0961b33eedf264b90e178f169c5b418404b3566be98f89874072a7f4f23867f5a02d43ebb47a1ba7a12f1e25edae3ed
@@ -1,3 +1,3 @@
1
1
  module Maxipago
2
- VERSION = "0.1.27"
2
+ VERSION = "0.1.28"
3
3
  end
@@ -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
  }
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: maxipago
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.27
4
+ version: 0.1.28
5
5
  platform: ruby
6
6
  authors:
7
7
  - leotads