Sha256: c003f8646b0664507382bf11f7a6fe4b74592afb376e50771057965e39ff90f0
Contents?: true
Size: 723 Bytes
Versions: 82
Compression:
Stored size: 723 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, options = {}) Notification.new(post) end def self.return(query_string, options = {}) Return.new(query_string) end end end end end
Version data entries
82 entries across 82 versions & 11 rubygems