Sha256: c9e6642ca82077ece6e4368cf6fe77f5e2223c4db698739a390ca446d29eaa7e
Contents?: true
Size: 604 Bytes
Versions: 59
Compression:
Stored size: 604 Bytes
Contents
require 'active_merchant/billing/gateways/smart_ps.rb' require 'active_merchant/billing/gateways/braintree/braintree_common' module ActiveMerchant #:nodoc: module Billing #:nodoc: class BraintreeOrangeGateway < SmartPs include BraintreeCommon self.display_name = 'Braintree (Orange Platform)' self.supported_countries = ['US'] 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
59 entries across 59 versions & 4 rubygems