Sha256: ef161f98a039bf4e265a10fcefa70ea6420fc4a1d9b1ee50d3737892dccff0f8
Contents?: true
Size: 695 Bytes
Versions: 55
Compression:
Stored size: 695 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) Return.new(query_string) end end end end end
Version data entries
55 entries across 55 versions & 15 rubygems