lib/active_merchant/billing/gateways/cyber_source.rb in activemerchant-1.95.0 vs lib/active_merchant/billing/gateways/cyber_source.rb in activemerchant-1.96.0

- old
+ new

@@ -1,9 +1,9 @@ module ActiveMerchant #:nodoc: module Billing #:nodoc: # Initial setup instructions can be found in - # http://cybersource.com/support_center/implementation/downloads/soap_api/SOAP_toolkits.pdf + # http://apps.cybersource.com/library/documentation/dev_guides/SOAP_Toolkits/SOAP_toolkits.pdf # # Important Notes # * For checks you can purchase and store. # * AVS and CVV only work against the production server. You will always # get back X for AVS and no response for CVV against the test server. @@ -25,10 +25,10 @@ self.live_url = 'https://ics2wsa.ic3.com/commerce/1.x/transactionProcessor' XSD_VERSION = '1.153' self.supported_cardtypes = [:visa, :master, :american_express, :discover, :diners_club, :jcb, :dankort, :maestro, :elo] - self.supported_countries = %w(US BR CA CN DK FI FR DE IN JP MX NO SE GB SG LB) + self.supported_countries = %w(US BR CA CN DK FI FR DE IN JP MX NO SE GB SG LB PK) self.default_currency = 'USD' self.currencies_without_fractions = %w(JPY) self.homepage_url = 'http://www.cybersource.com'