Sha256: 0192fc92107fbad54a487ea96fb7b2c14bbdac2e605093139ce419ac43d79bc2

Contents?: true

Size: 858 Bytes

Versions: 8

Compression:

Stored size: 858 Bytes

Contents

module ActiveMerchant
  module Billing
    class CitrusPayGateway < Gateway
      include MastercardGateway

      class_attribute :live_na_url, :live_ap_url, :test_na_url, :test_ap_url

      self.test_na_url = 'https://test-gateway.mastercard.com/api/rest/version/39/'
      self.test_ap_url = 'https://test-gateway.mastercard.com/api/rest/version/39/'

      self.live_na_url = 'https://na-gateway.mastercard.com/api/rest/version/39/'
      self.live_ap_url = 'https://ap-gateway.mastercard.com/api/rest/version/39/'

      self.display_name = 'Citrus Pay'
      self.homepage_url = 'http://www.citruspay.com/'
      self.supported_countries = %w(AR AU BR FR DE HK MX NZ SG GB US)
      self.default_currency = 'USD'
      self.supported_cardtypes = [:visa, :master, :american_express, :discover, :diners_club, :jcb, :maestro, :laser]

    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
activemerchant-1.83.0 lib/active_merchant/billing/gateways/citrus_pay.rb
activemerchant-1.82.0 lib/active_merchant/billing/gateways/citrus_pay.rb
activemerchant-1.81.0 lib/active_merchant/billing/gateways/citrus_pay.rb
activemerchant-1.80.0 lib/active_merchant/billing/gateways/citrus_pay.rb
activemerchant-1.79.2 lib/active_merchant/billing/gateways/citrus_pay.rb
activemerchant-1.79.1 lib/active_merchant/billing/gateways/citrus_pay.rb
activemerchant-1.79.0 lib/active_merchant/billing/gateways/citrus_pay.rb
activemerchant-1.78.0 lib/active_merchant/billing/gateways/citrus_pay.rb