activemerchant/active_merchant

View on GitHub
lib/active_merchant/billing/gateways/first_pay/first_pay_common.rb

Summary

Maintainability
A
0 mins
Test Coverage
module FirstPayCommon
  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

  def supports_scrubbing?
    true
  end
end