Module: OffsitePayments::Integrations::Paypal
- Defined in:
- lib/offsite_payments/integrations/paypal.rb
Defined Under Namespace
Modules: MassPayNotification
Classes: Helper, MassPayItem, Notification, Return
Class Method Summary
collapse
Class Method Details
.notification(post, options = {}) ⇒ Object
24
25
26
|
# File 'lib/offsite_payments/integrations/paypal.rb', line 24
def self.notification(post, options = {})
Notification.new(post)
end
|
.return(query_string, options = {}) ⇒ Object
28
29
30
|
# File 'lib/offsite_payments/integrations/paypal.rb', line 28
def self.return(query_string, options = {})
Return.new(query_string)
end
|
.service_url ⇒ Object
12
13
14
15
16
17
18
19
20
21
22
|
# File 'lib/offsite_payments/integrations/paypal.rb', line 12
def self.service_url
mode = OffsitePayments.mode
case mode
when :production
self.production_url
when :test
self.test_url
else
raise StandardError, "Integration mode set to an invalid value: #{mode}"
end
end
|