Sha256: 5462c41e9d8757a709de21ca294525cbe4319cb65ba5cfd5e14fee1f7de1b706

Contents?: true

Size: 738 Bytes

Versions: 93

Compression:

Stored size: 738 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={})
        unless options.has_key?(:software_id) || options.has_key?(:live_url)
          UsaEpayTransactionGateway.new(options)
        else
          UsaEpayAdvancedGateway.new(options)
        end
      end
    end
  end
end

Version data entries

93 entries across 92 versions & 7 rubygems

Version Path
activemerchant-1.79.2 lib/active_merchant/billing/gateways/usa_epay.rb
activemerchant-1.79.1 lib/active_merchant/billing/gateways/usa_epay.rb
activemerchant-1.79.0 lib/active_merchant/billing/gateways/usa_epay.rb
activemerchant-1.78.0 lib/active_merchant/billing/gateways/usa_epay.rb
activemerchant-1.77.0 lib/active_merchant/billing/gateways/usa_epay.rb
activemerchant-1.76.0 lib/active_merchant/billing/gateways/usa_epay.rb
activemerchant-1.75.0 lib/active_merchant/billing/gateways/usa_epay.rb
activemerchant-1.74.0 lib/active_merchant/billing/gateways/usa_epay.rb
activemerchant-1.73.0 lib/active_merchant/billing/gateways/usa_epay.rb
activemerchant-1.72.0 lib/active_merchant/billing/gateways/usa_epay.rb
activemerchant-1.71.0 lib/active_merchant/billing/gateways/usa_epay.rb
activemerchant-1.70.0 lib/active_merchant/billing/gateways/usa_epay.rb
activemerchant-1.69.0 lib/active_merchant/billing/gateways/usa_epay.rb
activemerchant-1.68.0 lib/active_merchant/billing/gateways/usa_epay.rb
activemerchant-1.67.0 lib/active_merchant/billing/gateways/usa_epay.rb
tanga_activemerchant-1.38.0.5 lib/active_merchant/billing/gateways/usa_epay.rb
activemerchant-1.66.0 lib/active_merchant/billing/gateways/usa_epay.rb
activemerchant-1.65.0 lib/active_merchant/billing/gateways/usa_epay.rb
activemerchant-1.64.0 lib/active_merchant/billing/gateways/usa_epay.rb
activemerchant-1.63.0 lib/active_merchant/billing/gateways/usa_epay.rb