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: 5041f7a194aa17e6108331b4601dd9495bbf5221
4
- data.tar.gz: e735ad845fe9daa8a73f2235cbca04ba8f292b7e
3
+ metadata.gz: d3a371e587ec48df4236ce3408fb96f15844e175
4
+ data.tar.gz: bf1ab418595c681389a5c1b6d34e8546a2e935a1
5
5
  SHA512:
6
- metadata.gz: f615fa5bd7221fe20dd4a41ac59363bce594786e2263eb10665bb483093ff2ecd077211dd49faeba5c244f3d0573e30c56719f54c68b2d715ec7968c4e2cda58
7
- data.tar.gz: 1db36b8a9549ef016d21874b95b8d5abdcf0fed37d15f89bfa9db6102300fcf2b991edd6469eb7f34f1a6507cd717ef847d639b7391692ee92ae992517de1f41
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)
@@ -1,3 +1,3 @@
1
1
  module ActiveMerchantCardFlex
2
- VERSION = "0.0.5"
2
+ VERSION = "0.0.6"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: active_merchant_card_flex
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.5
4
+ version: 0.0.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stephen St. Martin