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

Version Path
tanga_activemerchant-1.38.0.5 lib/active_merchant/billing/gateways/iats_payments.rb
tanga_activemerchant-1.38.0.4 lib/active_merchant/billing/gateways/iats_payments.rb
tanga_activemerchant-1.38.0.3 lib/active_merchant/billing/gateways/iats_payments.rb
tanga_activemerchant-1.38.0.2 lib/active_merchant/billing/gateways/iats_payments.rb
tanga_activemerchant-1.38.0.1 lib/active_merchant/billing/gateways/iats_payments.rb
tanga_activemerchant-1.38.0 lib/active_merchant/billing/gateways/iats_payments.rb
tanga_activemerchant-1.37.0 lib/active_merchant/billing/gateways/iats_payments.rb
activemerchant-1.42.9 lib/active_merchant/billing/gateways/iats_payments.rb
activemerchant-1.42.8 lib/active_merchant/billing/gateways/iats_payments.rb
activemerchant-1.42.7 lib/active_merchant/billing/gateways/iats_payments.rb
activemerchant-1.42.6 lib/active_merchant/billing/gateways/iats_payments.rb
activemerchant-1.42.5 lib/active_merchant/billing/gateways/iats_payments.rb
activemerchant-1.42.4 lib/active_merchant/billing/gateways/iats_payments.rb
activemerchant-1.42.3 lib/active_merchant/billing/gateways/iats_payments.rb
activemerchant-1.42.2 lib/active_merchant/billing/gateways/iats_payments.rb
activemerchant-1.42.1 lib/active_merchant/billing/gateways/iats_payments.rb
activemerchant-1.42.0 lib/active_merchant/billing/gateways/iats_payments.rb
activemerchant-1.41.0 lib/active_merchant/billing/gateways/iats_payments.rb
activemerchant-1.40.0 lib/active_merchant/billing/gateways/iats_payments.rb
activemerchant-1.39.2 lib/active_merchant/billing/gateways/iats_payments.rb