Sha256: 5daca6f79ba7b6dc4e446da342a3791be27619983331549d8fcfd987d30a26f7
Contents?: true
Size: 553 Bytes
Versions: 46
Compression:
Stored size: 553 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)' self.live_url = self.test_url = 'https://secure.braintreepaymentgateway.com/api/transact.php' def add_processor(post, options) post[:processor_id] = options[:processor] unless options[:processor].nil? end end end end
Version data entries
46 entries across 46 versions & 4 rubygems