Sha256: b5224c0198c4bb43eb046e92be5606301582e42efaf1a35434d021bf5223419e
Contents?: true
Size: 733 Bytes
Versions: 19
Compression:
Stored size: 733 Bytes
Contents
module ActiveMerchant #:nodoc: module Billing #:nodoc: ## # Delegates to the appropriate gateway, either the Transaction or Advanced # depending on options passed to new. # class UsaEpayGateway < Gateway self.abstract_class = true ## # Creates an instance of UsaEpayTransactionGateway by default, but if # :software id or :live_url are passed in the options hash it will # create an instance of UsaEpayAdvancedGateway. # def self.new(options={}) if options.has_key?(:software_id) || options.has_key?(:live_url) UsaEpayAdvancedGateway.new(options) else UsaEpayTransactionGateway.new(options) end end end end end
Version data entries
19 entries across 19 versions & 2 rubygems