Sha256: 123e125590bd9bfd07354d596881636d6dc22af9e286ed6cbf51deb74fcc9824

Contents?: true

Size: 695 Bytes

Versions: 43

Compression:

Stored size: 695 Bytes

Contents

require File.dirname(__FILE__) + '/authorize_net'

module ActiveMerchant #:nodoc:
  module Billing #:nodoc:
    class SecurePayGateway < AuthorizeNetGateway
      self.live_url = self.test_url = 'https://www.securepay.com/AuthSpayAdapter/process.aspx'

      self.homepage_url = 'http://www.securepay.com/'
      self.display_name = 'SecurePay'

      # Limit support to purchase() for the time being
      # JRuby chokes here
      # undef_method :authorize, :capture, :void, :credit

      undef_method :authorize
      undef_method :capture
      undef_method :void
      undef_method :credit

      private

      def split(response)
        response.split(',')
      end
    end
  end
end

Version data entries

43 entries across 43 versions & 3 rubygems

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