Sha256: 579abb2d8734e0b330b566654aa0304aae81bd1a1ceda2bf235f8be3f211d516
Contents?: true
Size: 709 Bytes
Versions: 11
Compression:
Stored size: 709 Bytes
Contents
module ActiveMerchant #:nodoc: module Billing #:nodoc: module Integrations #:nodoc: module Chronopay autoload :Return, 'active_merchant/billing/integrations/chronopay/return.rb' autoload :Helper, 'active_merchant/billing/integrations/chronopay/helper.rb' autoload :Notification, 'active_merchant/billing/integrations/chronopay/notification.rb' mattr_accessor :service_url self.service_url = 'https://secure.chronopay.com/index_shop.cgi' def self.notification(post) Notification.new(post) end def self.return(query_string, options = {}) Return.new(query_string) end end end end end
Version data entries
11 entries across 11 versions & 3 rubygems