Sha256: 12fb9693364fc91d9dce0d516eb0f42ef5786d3b79db819901dc41d384c71e27
Contents?: true
Size: 832 Bytes
Versions: 55
Compression:
Stored size: 832 Bytes
Contents
# With help from Giovanni Intini and his code for RGestPay - http://medlar.it/it/progetti/rgestpay module ActiveMerchant #:nodoc: module Billing #:nodoc: module Integrations #:nodoc: module Gestpay autoload :Return, File.dirname(__FILE__) + '/gestpay/return.rb' autoload :Common, File.dirname(__FILE__) + '/gestpay/common.rb' autoload :Helper, File.dirname(__FILE__) + '/gestpay/helper.rb' autoload :Notification, File.dirname(__FILE__) + '/gestpay/notification.rb' mattr_accessor :service_url self.service_url = 'https://ecomm.sella.it/gestpay/pagam.asp' 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