Sha256: a489d6204756b22be729e041dbc0dfaefb516f2ff9ff2e84a68d6a157aab568f
Contents?: true
Size: 650 Bytes
Versions: 44
Compression:
Stored size: 650 Bytes
Contents
require 'active_merchant/billing/gateways/payflow' require 'active_merchant/billing/gateways/payflow_express_uk' module ActiveMerchant #:nodoc: module Billing #:nodoc: class PayflowUkGateway < PayflowGateway self.default_currency = 'GBP' self.partner = 'PayPalUk' def express @express ||= PayflowExpressUkGateway.new(@options) end self.supported_cardtypes = [:visa, :master, :american_express, :discover, :solo, :switch] self.supported_countries = ['GB'] self.homepage_url = 'https://www.paypal.com/uk/webapps/mpp/pro' self.display_name = 'PayPal Payments Pro (UK)' end end end
Version data entries
44 entries across 44 versions & 3 rubygems