Sha256: 16493a6c3d70d721b894757276f175e1523f777f8df9be730f289003775db344
Contents?: true
Size: 511 Bytes
Versions: 26
Compression:
Stored size: 511 Bytes
Contents
require 'active_merchant/billing/gateways/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 = %i[visa master] 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
26 entries across 26 versions & 3 rubygems