maxipago 0.1.20 → 0.1.21

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: 7783d083cb4caf5a9694a6b65abeed46f7cc37f1c8535998c3c7683142c15947
4
- data.tar.gz: 4d910f022c4490f47ff7d6565e0e67aea5db06dfd1866952c2dbe078f3bcb2b9
3
+ metadata.gz: b1c1f9c8c00265f2aabdb8495177af6a4aa367ad4a4e4d2c5fad5d4f5efd9c76
4
+ data.tar.gz: f83edafc5d652ed45835447278aefb9275a9b46e5ba7d68905b1356a7c46a9e2
5
5
  SHA512:
6
- metadata.gz: 2823b766b5b9c5504f150042d9190209c5f5cb78aef638546d7ecbc93217f9849e25d4f3e7833820e4daa9d867ec8df7bdfc860fe7105a30a76f463baf6ef274
7
- data.tar.gz: ab1a890cec797d60e6302c221f2e41113b2e0cd09ae6b020f5dc6bc1556cb417a7874b90477bb1c9935a1b2482cc0f852fc194e745393335ea06641b5af811a7
6
+ metadata.gz: 305b5624a5e379600e3fb93e1756d9b0554853e43025c9f5bbc5eb3d9ca630d50424f9d9cde4b53076b3d2ec463fba18b3b2545decddd439d5b531fd3f0b7371
7
+ data.tar.gz: 2718675f46143e1840cd61fc2d53e606b3bab389352dd3f63b90f1232939d2282c652257a51c4fb4176a0908f23dffdf77542b65a01bc6ac97cffb54be190f45
@@ -1,3 +1,3 @@
1
1
  module Maxipago
2
- VERSION = "0.1.20"
2
+ VERSION = "0.1.21"
3
3
  end
@@ -56,7 +56,7 @@ module Maxipago
56
56
  def authorization
57
57
  builder = Nokogiri::XML::Builder.new(encoding: 'UTF-8') do |xml|
58
58
  xml.send("transaction-request") {
59
- xml.version self.apiversion
59
+ xml.version self.apiVersion
60
60
  xml.verification {
61
61
  xml.merchantId self.maxipagoId
62
62
  xml.merchantKey self.apiKey
@@ -124,7 +124,7 @@ module Maxipago
124
124
  def authentication
125
125
  builder = Nokogiri::XML::Builder.new(encoding: 'UTF-8') do |xml|
126
126
  xml.send("transaction-request") {
127
- xml.version self.apiversion
127
+ xml.version self.apiVersion
128
128
  xml.verification {
129
129
  xml.merchantId self.maxipagoId
130
130
  xml.merchantKey self.apiKey
@@ -192,7 +192,7 @@ module Maxipago
192
192
  def capture
193
193
  builder = Nokogiri::XML::Builder.new(encoding: 'UTF-8') do |xml|
194
194
  xml.send("transaction-request") {
195
- xml.version self.apiversion
195
+ xml.version self.apiVersion
196
196
  xml.verification {
197
197
  xml.merchantId self.maxipagoId
198
198
  xml.merchantKey self.apiKey
@@ -214,7 +214,7 @@ module Maxipago
214
214
  def sale
215
215
  builder = Nokogiri::XML::Builder.new(encoding: 'UTF-8') do |xml|
216
216
  xml.send("transaction-request") {
217
- xml.version self.apiversion
217
+ xml.version self.apiVersion
218
218
  xml.verification {
219
219
  xml.merchantId self.maxipagoId
220
220
  xml.merchantKey self.apiKey
@@ -288,7 +288,7 @@ module Maxipago
288
288
  def void
289
289
  builder = Nokogiri::XML::Builder.new(encoding: 'UTF-8') do |xml|
290
290
  xml.send("transaction-request") {
291
- xml.version self.apiversion
291
+ xml.version self.apiVersion
292
292
  xml.verification {
293
293
  xml.merchantId self.maxipagoId
294
294
  xml.merchantKey self.apiKey
@@ -306,7 +306,7 @@ module Maxipago
306
306
  def reversal
307
307
  builder = Nokogiri::XML::Builder.new(encoding: 'UTF-8') do |xml|
308
308
  xml.send("transaction-request") {
309
- xml.version self.apiversion
309
+ xml.version self.apiVersion
310
310
  xml.verification {
311
311
  xml.merchantId self.maxipagoId
312
312
  xml.merchantKey self.apiKey
@@ -328,7 +328,7 @@ module Maxipago
328
328
  def recurring
329
329
  builder = Nokogiri::XML::Builder.new(encoding: 'UTF-8') do |xml|
330
330
  xml.send("transaction-request") {
331
- xml.version self.apiversion
331
+ xml.version self.apiVersion
332
332
  xml.verification {
333
333
  xml.merchantId self.maxipagoId
334
334
  xml.merchantKey self.apiKey
@@ -403,7 +403,7 @@ module Maxipago
403
403
  def bank_bill
404
404
  builder = Nokogiri::XML::Builder.new(encoding: 'UTF-8') do |xml|
405
405
  xml.send("transaction-request") {
406
- xml.version self.apiversion
406
+ xml.version self.apiVersion
407
407
  xml.verification {
408
408
  xml.merchantId self.maxipagoId
409
409
  xml.merchantKey self.apiKey
@@ -461,7 +461,7 @@ module Maxipago
461
461
  def online_debit
462
462
  builder = Nokogiri::XML::Builder.new(encoding: 'UTF-8') do |xml|
463
463
  xml.send("transaction-request") {
464
- xml.version self.apiversion
464
+ xml.version self.apiVersion
465
465
  xml.verification {
466
466
  xml.merchantId self.maxipagoId
467
467
  xml.merchantKey self.apiKey
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.20
4
+ version: 0.1.21
5
5
  platform: ruby
6
6
  authors:
7
7
  - leotads