Sha256: 097a650e8bead7cfba440f0bd453b06178babc3c0f99efc81fbad4659c745277
Contents?: true
Size: 1.23 KB
Versions: 29
Compression:
Stored size: 1.23 KB
Contents
require 'active_merchant/billing/integrations/paypal/helper.rb' require 'active_merchant/billing/integrations/paypal/notification.rb' require 'active_merchant/billing/integrations/paypal/return.rb' module ActiveMerchant #:nodoc: module Billing #:nodoc: module Integrations #:nodoc: module Paypal # Overwrite this if you want to change the Paypal test url mattr_accessor :test_url self.test_url = 'https://www.sandbox.paypal.com/cgi-bin/webscr' # Overwrite this if you want to change the Paypal production url mattr_accessor :production_url self.production_url = 'https://www.paypal.com/cgi-bin/webscr' 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 def self.notification(post) Notification.new(post) end def self.return(query_string) Return.new(query_string) end end end end end
Version data entries
29 entries across 29 versions & 10 rubygems