Sha256: 39cfa3e3f937e50158784c66e88deedd004dfafb7b79221e72566f2248373f15
Contents?: true
Size: 590 Bytes
Versions: 2
Compression:
Stored size: 590 Bytes
Contents
module ActiveMerchant #:nodoc: module Billing #:nodoc: module Integrations #:nodoc: module Moneybookers autoload :Notification, File.dirname(__FILE__) + '/moneybookers/notification.rb' autoload :Helper, File.dirname(__FILE__) + '/moneybookers/helper.rb' mattr_accessor :production_url self.production_url = 'https://www.moneybookers.com/app/payment.pl' def self.service_url self.production_url end def self.notification(post) Notification.new(post) end end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
activemerchant-1.12.1 | lib/active_merchant/billing/integrations/moneybookers.rb |
activemerchant-1.12.0 | lib/active_merchant/billing/integrations/moneybookers.rb |