Sha256: f4b678b353c08ad8b1999c46ebfec5f5b4f9a195b85b22f367bfdf2c3d7d573e
Contents?: true
Size: 686 Bytes
Versions: 12
Compression:
Stored size: 686 Bytes
Contents
module ActiveMerchant #:nodoc: module Billing #:nodoc: module Integrations #:nodoc: module TwoCheckout autoload 'Helper', File.dirname(__FILE__) + '/two_checkout/helper' autoload 'Return', File.dirname(__FILE__) + '/two_checkout/return' autoload 'Notification', File.dirname(__FILE__) + '/two_Checkout/notification' mattr_accessor :service_url self.service_url = 'https://www.2checkout.com/2co/buyer/purchase' def self.notification(post) Notification.new(post) end def self.return(query_string) Return.new(query_string) end end end end end
Version data entries
12 entries across 12 versions & 4 rubygems