active_merchant_card_flex 0.0.5 → 0.0.6
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
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d3a371e587ec48df4236ce3408fb96f15844e175
|
|
4
|
+
data.tar.gz: bf1ab418595c681389a5c1b6d34e8546a2e935a1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 616ab560edbcae7028e78bced44b2edd33d6127dd8ff65e18bd14155c9d4f40c5a1c9d72d9d046e27f19f9bee4a30e8a000c3a43eac90c9676ff7a112b7b575a
|
|
7
|
+
data.tar.gz: 5a53208dde9364220d890afa3ad4afd933bba127461046cb72634bbc314f6c21882121224a614898ea15b58f3fd4caf60945b8a4de4faf13066104e5d741ae36
|
|
@@ -41,6 +41,7 @@ module ActiveMerchant
|
|
|
41
41
|
post[:authonly] = 1
|
|
42
42
|
|
|
43
43
|
add_address(post, options)
|
|
44
|
+
add_custom(post, options)
|
|
44
45
|
add_invoice(post, options)
|
|
45
46
|
add_payment_source(post, creditcard_or_credit_card_id, options)
|
|
46
47
|
|
|
@@ -76,6 +77,7 @@ module ActiveMerchant
|
|
|
76
77
|
def credit(money, creditcard_or_credit_card_id, options = {})
|
|
77
78
|
post = {}
|
|
78
79
|
add_address(post, options)
|
|
80
|
+
add_custom(post, options)
|
|
79
81
|
add_invoice(post, options)
|
|
80
82
|
add_payment_source(post, creditcard_or_credit_card_id, options)
|
|
81
83
|
|
|
@@ -92,6 +94,7 @@ module ActiveMerchant
|
|
|
92
94
|
def purchase(money, creditcard_or_credit_card_id, options = {})
|
|
93
95
|
post = {}
|
|
94
96
|
add_address(post, options)
|
|
97
|
+
add_custom(post, options)
|
|
95
98
|
add_invoice(post, options)
|
|
96
99
|
add_payment_source(post, creditcard_or_credit_card_id, options)
|
|
97
100
|
|
|
@@ -108,6 +111,7 @@ module ActiveMerchant
|
|
|
108
111
|
post = {}
|
|
109
112
|
post[:accttype] = 1
|
|
110
113
|
add_address(post, options)
|
|
114
|
+
add_custom(post, options)
|
|
111
115
|
add_creditcard(post, creditcard)
|
|
112
116
|
|
|
113
117
|
commit(:profile_add, nil, post)
|