Sha256: 9b6bbfa8a46bec3088279b9cef541d5a05ee3ada19d5ea4e0c098d27d7437b5f
Contents?: true
Size: 784 Bytes
Versions: 1
Compression:
Stored size: 784 Bytes
Contents
require File.dirname(__FILE__) + '/authorize_net' module MerbMerchant #: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 end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
merb_merchant-1.4.1 | lib/merb_merchant/billing/gateways/secure_pay.rb |