Sha256: c1152b0e93a0dceda6bb090aa3a61a026e0427cf89644324cf19d67125d4d703
Contents?: true
Size: 524 Bytes
Versions: 58
Compression:
Stored size: 524 Bytes
Contents
require File.dirname(__FILE__) + '/paypal' module ActiveMerchant #:nodoc: module Billing #:nodoc: # The PayPal gateway for PayPal Website Payments Pro Canada only supports Visa and MasterCard class PaypalCaGateway < PaypalGateway self.supported_cardtypes = [:visa, :master, :american_express] self.supported_countries = ['CA'] self.homepage_url = 'https://www.paypal.com/cgi-bin/webscr?cmd=_wp-pro-overview-outside' self.display_name = 'PayPal Website Payments Pro (CA)' end end end
Version data entries
58 entries across 58 versions & 17 rubygems