Sha256: 0fb8af00d9f2a20b314505a1d52f3ddd7a72aa2ccfec05474bbbea746e93ecd2
Contents?: true
Size: 678 Bytes
Versions: 43
Compression:
Stored size: 678 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
43 entries across 43 versions & 12 rubygems