Sha256: 71030dd34bc2d3851a717b405dac9f6852697677d63e2e3c52fba90874bf5dc6
Contents?: true
Size: 628 Bytes
Versions: 36
Compression:
Stored size: 628 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 = %i[visa master american_express discover] 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
36 entries across 36 versions & 4 rubygems