module FirstPayCommon
Public Class Methods
included(base)
click to toggle source
# File lib/active_merchant/billing/gateways/first_pay/first_pay_common.rb, line 2 def self.included(base) base.supported_countries = ['US'] base.default_currency = 'USD' base.money_format = :dollars base.supported_cardtypes = %i[visa master american_express discover] base.homepage_url = 'http://1stpaygateway.net/' base.display_name = '1stPayGateway.Net' end
Public Instance Methods
supports_scrubbing?()
click to toggle source
# File lib/active_merchant/billing/gateways/first_pay/first_pay_common.rb, line 12 def supports_scrubbing? true end