Sha256: 430351d1165352f05b3544cf66993f41d4daa0fd264eefbc90f2aab6a64f36e9
Contents?: true
Size: 661 Bytes
Versions: 58
Compression:
Stored size: 661 Bytes
Contents
module ActiveMerchant #:nodoc: module Billing #:nodoc: module Integrations #:nodoc: module Dotpay autoload :Return, File.dirname(__FILE__) + '/dotpay/return.rb' autoload :Helper, File.dirname(__FILE__) + '/dotpay/helper.rb' autoload :Notification, File.dirname(__FILE__) + '/dotpay/notification.rb' mattr_accessor :service_url self.service_url = 'https://ssl.dotpay.pl' def self.notification(post, options = {}) Notification.new(post, options) 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