Module: ActiveMerchant::Billing::Integrations::PayuInPaisa
- Defined in:
- lib/active_merchant/billing/integrations/payu_in_paisa.rb,
lib/active_merchant/billing/integrations/payu_in_paisa/helper.rb,
lib/active_merchant/billing/integrations/payu_in_paisa/return.rb,
lib/active_merchant/billing/integrations/payu_in_paisa/notification.rb
Defined Under Namespace
Classes: Helper, Notification, Return
Class Method Summary
collapse
Class Method Details
.notification(post, options = {}) ⇒ Object
20
21
22
|
# File 'lib/active_merchant/billing/integrations/payu_in_paisa.rb', line 20
def self.notification(post, options = {})
Notification.new(post, options)
end
|
.return(post, options = {}) ⇒ Object
24
25
26
|
# File 'lib/active_merchant/billing/integrations/payu_in_paisa.rb', line 24
def self.return(post, options = {})
Return.new(post, options)
end
|
.service_url ⇒ Object
16
17
18
|
# File 'lib/active_merchant/billing/integrations/payu_in_paisa.rb', line 16
def self.service_url
ActiveMerchant::Billing::Base.integration_mode == :production ? self.production_url : self.test_url
end
|