Class/Module Index [+]

Quicksearch

ActiveMerchant::Billing::Integrations::Paypal

Public Class Methods

notification(post, options = {}) click to toggle source
# File lib/active_merchant/billing/integrations/paypal.rb, line 29
def self.notification(post, options = {})
  Notification.new(post)
end
return(query_string, options = {}) click to toggle source
# File lib/active_merchant/billing/integrations/paypal.rb, line 33
def self.return(query_string, options = {})
  Return.new(query_string)
end
service_url() click to toggle source
# File lib/active_merchant/billing/integrations/paypal.rb, line 17
def self.service_url
  mode = ActiveMerchant::Billing::Base.integration_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

[Validate]

Generated with the Darkfish Rdoc Generator 2.