Sha256: 38cf63bfb2ff084795c686644354dbbf482f17ef8a14eb1818023a3fb13893db
Contents?: true
Size: 797 Bytes
Versions: 33
Compression:
Stored size: 797 Bytes
Contents
module ActiveMerchant #:nodoc: module Billing #:nodoc: module Integrations #:nodoc: module Dwolla autoload :Return, 'active_merchant/billing/integrations/dwolla/return.rb' autoload :Helper, 'active_merchant/billing/integrations/dwolla/helper.rb' autoload :Notification, 'active_merchant/billing/integrations/dwolla/notification.rb' autoload :Common, 'active_merchant/billing/integrations/dwolla/common.rb' mattr_accessor :service_url self.service_url = 'https://www.dwolla.com/payment/pay' def self.notification(post, options={}) Notification.new(post, options) end def self.return(query_string, options={}) Return.new(query_string, options) end end end end end
Version data entries
33 entries across 33 versions & 2 rubygems