Sha256: 12cf89c29f463b2eceb63b3bf772d8a746bc4082ae226a45f3ba59754b4621a3

Contents?: true

Size: 1.96 KB

Versions: 10

Compression:

Stored size: 1.96 KB

Contents

=begin
 * Shop System Plugins - Terms of use
 *
 * This terms of use regulates warranty and liability between Wirecard Central Eastern Europe (subsequently referred to as WDCEE) and it's
 * contractual partners (subsequently referred to as customer or customers) which are related to the use of plugins provided by WDCEE.
 *
 * The Plugin is provided by WDCEE free of charge for it's customers and must be used for the purpose of WDCEE's payment platform
 * integration only. It explicitly is not part of the general contract between WDCEE and it's customer. The plugin has successfully been tested
 * under specific circumstances which are defined as the shopsystem's standard configuration (vendor's delivery state). The Customer is
 * responsible for testing the plugin's functionality before putting it into production environment.
 * The customer uses the plugin at own risk. WDCEE does not guarantee it's full functionality neither does WDCEE assume liability for any
 * disadvantage related to the use of this plugin. By installing the plugin into the shopsystem the customer agrees to the terms of use.
 * Please do not use this plugin if you do not agree to the terms of use!
=end

module ActiveMerchant #:nodoc:
  module Billing #:nodoc:
    module Integrations #:nodoc:
      module WirecardCheckoutPage
        autoload :Common, File.dirname(__FILE__) + '/wirecard_checkout_page/common.rb'
        autoload :Helper, File.dirname(__FILE__) + '/wirecard_checkout_page/helper.rb'
        autoload :Notification, File.dirname(__FILE__) + '/wirecard_checkout_page/notification.rb'
        autoload :Return, File.dirname(__FILE__) + '/wirecard_checkout_page/return.rb'

        mattr_accessor :service_url
        self.service_url = 'https://checkout.wirecard.com/page/init.php'

        def self.notification(post, options)
          Notification.new(post, options)
        end

        def self.return(postdata, options)
          Return.new(postdata, options)
        end

      end
    end
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
activemerchant-1.43.3 lib/active_merchant/billing/integrations/wirecard_checkout_page.rb
activemerchant-1.43.1 lib/active_merchant/billing/integrations/wirecard_checkout_page.rb
activemerchant-1.43.0 lib/active_merchant/billing/integrations/wirecard_checkout_page.rb
activemerchant-1.42.9 lib/active_merchant/billing/integrations/wirecard_checkout_page.rb
activemerchant-1.42.8 lib/active_merchant/billing/integrations/wirecard_checkout_page.rb
activemerchant-1.42.7 lib/active_merchant/billing/integrations/wirecard_checkout_page.rb
activemerchant-1.42.6 lib/active_merchant/billing/integrations/wirecard_checkout_page.rb
activemerchant-1.42.5 lib/active_merchant/billing/integrations/wirecard_checkout_page.rb
activemerchant-1.42.4 lib/active_merchant/billing/integrations/wirecard_checkout_page.rb
activemerchant-1.42.3 lib/active_merchant/billing/integrations/wirecard_checkout_page.rb