Sha256: 358c54bba5c259d557adb57c740743a085f6ac01f9696a0c256afd8f0f1c6540

Contents?: true

Size: 849 Bytes

Versions: 19

Compression:

Stored size: 849 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]

    end
  end
end

Version data entries

19 entries across 19 versions & 2 rubygems

Version Path
activemerchant-1.103.0 lib/active_merchant/billing/gateways/citrus_pay.rb
activemerchant-1.102.0 lib/active_merchant/billing/gateways/citrus_pay.rb
activemerchant-1.101.0 lib/active_merchant/billing/gateways/citrus_pay.rb
activemerchant-1.100.0 lib/active_merchant/billing/gateways/citrus_pay.rb
activemerchant-1.99.0 lib/active_merchant/billing/gateways/citrus_pay.rb
activemerchant-1.98.0 lib/active_merchant/billing/gateways/citrus_pay.rb
active_accountability_merchant-1.97.1 lib/active_merchant/billing/gateways/citrus_pay.rb
activemerchant-1.97.0 lib/active_merchant/billing/gateways/citrus_pay.rb
activemerchant-1.96.0 lib/active_merchant/billing/gateways/citrus_pay.rb
activemerchant-1.95.0 lib/active_merchant/billing/gateways/citrus_pay.rb
activemerchant-1.94.0 lib/active_merchant/billing/gateways/citrus_pay.rb
activemerchant-1.93.0 lib/active_merchant/billing/gateways/citrus_pay.rb
activemerchant-1.92.0 lib/active_merchant/billing/gateways/citrus_pay.rb
activemerchant-1.91.0 lib/active_merchant/billing/gateways/citrus_pay.rb
activemerchant-1.90.0 lib/active_merchant/billing/gateways/citrus_pay.rb
activemerchant-1.89.0 lib/active_merchant/billing/gateways/citrus_pay.rb
activemerchant-1.88.0 lib/active_merchant/billing/gateways/citrus_pay.rb
activemerchant-1.87.0 lib/active_merchant/billing/gateways/citrus_pay.rb
activemerchant-1.86.0 lib/active_merchant/billing/gateways/citrus_pay.rb