Sha256: 715e6b672fe64d31fccd6c05d73ac0129e037ad0290c7bc4a66be52660c9205c
Contents?: true
Size: 440 Bytes
Versions: 79
Compression:
Stored size: 440 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
79 entries across 79 versions & 4 rubygems