Sha256: 742565336c8bfebdb7db368a8ffd14e81d4e8d385244032bef88f5f0becc107d

Contents?: true

Size: 1019 Bytes

Versions: 1

Compression:

Stored size: 1019 Bytes

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.2.0"

  # @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/railtie' if defined?(::Rails) && ::Rails::VERSION::MAJOR >= 3

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
adyen-1.2.0 lib/adyen.rb