Sha256: 925eb88a8b5ac8ba660aa6d24fc3effe3863aaaa0745b027c550a780fcce502d
Contents?: true
Size: 867 Bytes
Versions: 48
Compression:
Stored size: 867 Bytes
Contents
module ActiveMerchant #:nodoc: module Billing #:nodoc: module Integrations #:nodoc: module Pxpay autoload :Helper, 'active_merchant/billing/integrations/pxpay/helper.rb' autoload :Notification, 'active_merchant/billing/integrations/pxpay/notification.rb' autoload :Return, 'active_merchant/billing/integrations/pxpay/return.rb' TOKEN_URL = 'https://sec.paymentexpress.com/pxpay/pxaccess.aspx' LIVE_URL = 'https://sec.paymentexpress.com/pxpay/pxpay.aspx' def self.token_url TOKEN_URL end def self.service_url LIVE_URL end def self.notification(post, options={}) Notification.new(post, options) end def self.return(query_string, options={}) Return.new(query_string, options) end end end end end
Version data entries
48 entries across 48 versions & 4 rubygems