Sha256: 4008bd6d747b5b91c7feb4ab1bd95471c6c2f49d8b78bbc083a6b32ec283fc4d
Contents?: true
Size: 637 Bytes
Versions: 31
Compression:
Stored size: 637 Bytes
Contents
module ActiveMerchant #:nodoc: module Billing #:nodoc: class NmiGateway < AuthorizeNetGateway self.test_url = 'https://secure.networkmerchants.com/gateway/transact.dll' self.live_url = 'https://secure.networkmerchants.com/gateway/transact.dll' self.homepage_url = 'http://nmi.com/' self.display_name = 'NMI' self.supported_countries = ['US'] self.supported_cardtypes = [:visa, :master, :american_express, :discover] private def add_creditcard(post, creditcard, options={}) super post[:recurring_billing] = "TRUE" if options[:recurring] end end end end
Version data entries
31 entries across 31 versions & 3 rubygems