tomriley-active_merchant 1.4.2.7 → 1.4.2.8
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.
data/active_merchant.gemspec
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
s.name = "active_merchant"
|
|
3
|
-
s.version = "1.4.2.
|
|
3
|
+
s.version = "1.4.2.8"
|
|
4
4
|
s.date = "2009-01-12"
|
|
5
5
|
s.summary = "Active Merchant is a simple payment abstraction library used in and sponsored by Shopify."
|
|
6
6
|
s.homepage = "http://www.activemerchant.org/"
|
|
@@ -251,13 +251,11 @@ module ActiveMerchant #:nodoc:
|
|
|
251
251
|
end
|
|
252
252
|
|
|
253
253
|
unless credit_card.issue_number.blank?
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
add_pair(post, :IssueNumber, issue_number)
|
|
254
|
+
print "Adding IssueNumber #{credit_card.issue_number}\n"
|
|
255
|
+
add_pair(post, :IssueNumber, credit_card.issue_number)
|
|
257
256
|
end
|
|
258
257
|
|
|
259
258
|
add_pair(post, :CardType, map_card_type(credit_card))
|
|
260
|
-
|
|
261
259
|
add_pair(post, :CV2, credit_card.verification_value)
|
|
262
260
|
end
|
|
263
261
|
|