lib/active_merchant/billing/gateways/secure_pay.rb in jelaniharris-activemerchant-1.24.1 vs lib/active_merchant/billing/gateways/secure_pay.rb in jelaniharris-activemerchant-1.29.1

- old
+ new

@@ -2,27 +2,24 @@ 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 - - def test? - Base.gateway_mode == :test - end - + private + def split(response) response.split(',') end end end