Sha256: 81b1e585b7dac5ca9e701f1e22b41ecbbbe530e21c64cb297201d2914e033e15
Contents?: true
Size: 599 Bytes
Versions: 4
Compression:
Stored size: 599 Bytes
Contents
module ActiveMerchant #:nodoc: module Billing #:nodoc: module Integrations #:nodoc: module Migs autoload :Return, 'active_merchant/billing/integrations/migs/return.rb' autoload :Helper, 'active_merchant/billing/integrations/migs/helper.rb' mattr_accessor :service_url self.service_url = 'https://migs.mastercard.com.au/vpcpay' def self.notification(post) Notification.new(post) end def self.return(post, options = {}) Return.new(post, options) end end end end end
Version data entries
4 entries across 4 versions & 1 rubygems