require File.dirname(__FILE__) + '/smart_ps.rb' require File.dirname(__FILE__) + '/braintree/braintree_common' module ActiveMerchant #:nodoc: module Billing #:nodoc: class BraintreeOrangeGateway < SmartPs include BraintreeCommon self.display_name = 'Braintree (Orange Platform)' def api_url 'https://secure.braintreepaymentgateway.com/api/transact.php' end def add_processor(post, options) post[:processor_id] = options[:processor] unless options[:processor].nil? end end end end