Sha256: 7da986daf7566cb93c5ab8a7d46e49c96e6d13ce7f10133355c7a394e2256ae2
Contents?: true
Size: 880 Bytes
Versions: 25
Compression:
Stored size: 880 Bytes
Contents
module ActiveMerchant #:nodoc: module Billing #:nodoc: class IatsPaymentsGateway < AuthorizeNetGateway self.live_url = self.test_url = 'https://www.iatspayments.com/netgate/AEGateway.aspx' self.homepage_url = 'http://www.iatspayments.com/' self.display_name = 'IATSPayments' def authorize(money, paysource, options = {}) raise NotImplementedError end def capture(money, authorization, options = {}) raise NotImplementedError end def void(authorization, options = {}) raise NotImplementedError end def refund(money, identification, options = {}) raise NotImplementedError end def credit(money, identification, options = {}) raise NotImplementedError end private def split(response) response.split(',') end end end end
Version data entries
25 entries across 25 versions & 2 rubygems