Sha256: cb12b2220722cc4f1f6e2f77e05f049113c7699e61c09178330756f038408975
Contents?: true
Size: 628 Bytes
Versions: 58
Compression:
Stored size: 628 Bytes
Contents
module ActiveMerchant #:nodoc: module Billing #:nodoc: module Integrations #:nodoc: module Epay autoload :Helper, File.dirname(__FILE__) + '/epay/helper.rb' autoload :Notification, File.dirname(__FILE__) + '/epay/notification.rb' mattr_accessor :service_url self.service_url = 'https://ssl.ditonlinebetalingssystem.dk/integration/ewindow/Default.aspx' def self.notification(post, options = {}) Notification.new(post) end def self.return(post, options = {}) Return.new(post, options) end end end end end
Version data entries
58 entries across 58 versions & 5 rubygems