Sha256: 3a63a4e2b6b999bf3de1d83f3770f5d9c7f6f6f012defa99a62001997aa38bbe
Contents?: true
Size: 601 Bytes
Versions: 1
Compression:
Stored size: 601 Bytes
Contents
require 'active_merchant/billing/gateways/smart_ps' 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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
activemerchant-1.137.0 | lib/active_merchant/billing/gateways/braintree_orange.rb |