Sha256: 34874282d065982a0191ff951bf00cbced5b7f4d3d371bb4ee0bc4fc30d689a4
Contents?: true
Size: 556 Bytes
Versions: 15
Compression:
Stored size: 556 Bytes
Contents
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
Version data entries
15 entries across 15 versions & 4 rubygems