module OffsitePayments::Integrations::PayuInPaisa

Public Class Methods

notification(post, options = {}) click to toggle source
# File lib/offsite_payments/integrations/payu_in_paisa.rb, line 14
def self.notification(post, options = {})
  Notification.new(post, options)
end
return(post, options = {}) click to toggle source
# File lib/offsite_payments/integrations/payu_in_paisa.rb, line 18
def self.return(post, options = {})
  Return.new(post, options)
end
service_url() click to toggle source
# File lib/offsite_payments/integrations/payu_in_paisa.rb, line 10
def self.service_url
  OffsitePayments.mode == :production ? self.production_url : self.test_url
end