Sha256: bb2de37953a360e1f3ea28ea5c4d30f574d6e1e67356990c9b09998eb482542a
Contents?: true
Size: 948 Bytes
Versions: 18
Compression:
Stored size: 948 Bytes
Contents
module ActiveMerchant module Billing module Integrations module PayuInPaisa autoload :Return, 'active_merchant/billing/integrations/payu_in_paisa/return.rb' autoload :Helper, 'active_merchant/billing/integrations/payu_in_paisa/helper.rb' autoload :Notification, 'active_merchant/billing/integrations/payu_in_paisa/notification.rb' mattr_accessor :test_url mattr_accessor :production_url self.test_url = 'https://test.payu.in/_payment.php' self.production_url = 'https://secure.payu.in/_payment.php' def self.service_url ActiveMerchant::Billing::Base.integration_mode == :production ? self.production_url : self.test_url end 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
18 entries across 18 versions & 1 rubygems