Sha256: 4018dc5ca8a536358f2e75ba2cba9ba38886444fb210753d4996265c149252dd

Contents?: true

Size: 1.01 KB

Versions: 1

Compression:

Stored size: 1.01 KB

Contents

# The Adyen module is the container module for all Adyen related functionality, 
# which is implemented in submodules. This module only contains some global 
# configuration methods.
#
# The most important submodules are:
# * {Adyen::Form} for generating payment form fields, generating redirect URLs 
#   to the Adyen payment system, and generating and checking of signatures.
# * {Adyen::API} for communicating with the Adyen SOAP services for issuing
#   (recurring) payments and recurring contract maintenance.
module Adyen

  # Version constant for the Adyen plugin.
  # DO NOT CHANGE THIS VALUE BY HAND. It will be updated automatically by
  # the gem:release rake task.
  VERSION = "1.3.1"

  # @return [Configuration] The configuration singleton.
  def self.configuration
    @configuration ||= Adyen::Configuration.new
  end
end

require 'adyen/configuration'
require 'adyen/encoding'
require 'adyen/formatter'
require 'adyen/form'
require 'adyen/api'

require 'adyen/railtie' if defined?(::Rails) && ::Rails::VERSION::MAJOR >= 3

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
adyen-1.3.1 lib/adyen.rb