Sha256: a63e2f9be9ae5279cf2506d46afe0e99a018818280a5b7d7db281227673b85e2
Contents?: true
Size: 442 Bytes
Versions: 28
Compression:
Stored size: 442 Bytes
Contents
require 'active_merchant/billing/gateways/braintree/braintree_common' module ActiveMerchant #:nodoc: module Billing #:nodoc: class BraintreeGateway < Gateway include BraintreeCommon self.abstract_class = true def self.new(options = {}) if options.has_key?(:login) BraintreeOrangeGateway.new(options) else BraintreeBlueGateway.new(options) end end end end end
Version data entries
28 entries across 28 versions & 4 rubygems