Sha256: f1ba1198da5aa6100bbc9fee35ed2181f07addbc4993fdb8a03256f75a3d7b61

Contents?: true

Size: 696 Bytes

Versions: 8

Compression:

Stored size: 696 Bytes

Contents

require File.join(File.dirname(__FILE__), 'smart_ps.rb')

module ActiveMerchant #:nodoc:
  module Billing #:nodoc:
    class TransaxGateway < SmartPs
      self.live_url = self.test_url = 'https://secure.nelixtransax.net/api/transact.php'

      # The countries the gateway supports merchants from as 2 digit ISO country codes
      self.supported_countries = ['US']

      # The card types supported by the payment gateway
      self.supported_cardtypes = [:visa, :master, :american_express, :discover]

      # The homepage URL of the gateway
      self.homepage_url = 'https://www.nelixtransax.com/'

      # The name of the gateway
      self.display_name = 'NELiX TransaX'
    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
activemerchant-1.108.0 lib/active_merchant/billing/gateways/transax.rb
activemerchant-1.107.4 lib/active_merchant/billing/gateways/transax.rb
activemerchant-1.107.3 lib/active_merchant/billing/gateways/transax.rb
activemerchant-1.107.2 lib/active_merchant/billing/gateways/transax.rb
activemerchant-1.107.1 lib/active_merchant/billing/gateways/transax.rb
activemerchant-1.106.0 lib/active_merchant/billing/gateways/transax.rb
activemerchant-1.105.0 lib/active_merchant/billing/gateways/transax.rb
activemerchant-1.104.0 lib/active_merchant/billing/gateways/transax.rb