Sha256: 881e89badb22120edafd3ac55868980dc8b0ac1e58216a6a1e50fafbec9065f7
Contents?: true
Size: 633 Bytes
Versions: 27
Compression:
Stored size: 633 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] 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
27 entries across 27 versions & 2 rubygems