Sha256: 44c6408eb482adb5286a6475475393e73e849aae0241ad905f3c3246e1072b0d
Contents?: true
Size: 696 Bytes
Versions: 1
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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
activemerchant-1.86.0 | lib/active_merchant/billing/gateways/transax.rb |