Sha256: 30337b3b633f01f29b1d8a768ce2d0f2bb6858d0d1e505da00a2c803c9caf0d6

Contents?: true

Size: 890 Bytes

Versions: 17

Compression:

Stored size: 890 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]
      self.ssl_version = :TLSv1

    end
  end
end

Version data entries

17 entries across 17 versions & 1 rubygems

Version Path
activemerchant-1.77.0 lib/active_merchant/billing/gateways/citrus_pay.rb
activemerchant-1.76.0 lib/active_merchant/billing/gateways/citrus_pay.rb
activemerchant-1.75.0 lib/active_merchant/billing/gateways/citrus_pay.rb
activemerchant-1.74.0 lib/active_merchant/billing/gateways/citrus_pay.rb
activemerchant-1.73.0 lib/active_merchant/billing/gateways/citrus_pay.rb
activemerchant-1.72.0 lib/active_merchant/billing/gateways/citrus_pay.rb
activemerchant-1.71.0 lib/active_merchant/billing/gateways/citrus_pay.rb
activemerchant-1.70.0 lib/active_merchant/billing/gateways/citrus_pay.rb
activemerchant-1.69.0 lib/active_merchant/billing/gateways/citrus_pay.rb
activemerchant-1.68.0 lib/active_merchant/billing/gateways/citrus_pay.rb
activemerchant-1.67.0 lib/active_merchant/billing/gateways/citrus_pay.rb
activemerchant-1.66.0 lib/active_merchant/billing/gateways/citrus_pay.rb
activemerchant-1.65.0 lib/active_merchant/billing/gateways/citrus_pay.rb
activemerchant-1.64.0 lib/active_merchant/billing/gateways/citrus_pay.rb
activemerchant-1.63.0 lib/active_merchant/billing/gateways/citrus_pay.rb
activemerchant-1.62.0 lib/active_merchant/billing/gateways/citrus_pay.rb
activemerchant-1.61.0 lib/active_merchant/billing/gateways/citrus_pay.rb