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.
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = "active_merchant"
3
- s.version = "1.4.2.7"
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
- issue_number = sprintf("%02d", credit_card.issue_number.to_i)
255
- print "Adding IssueNumber #{issue_number}\n"
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
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tomriley-active_merchant
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.2.7
4
+ version: 1.4.2.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tobias Luetke