module Wayforpay

Constants

VERSION

Public Class Methods

configure() { |configuration| ... } click to toggle source

Pre-configure with merchant_account, merchant_domain_name and encrypt_secret_key.

# File lib/wayforpay.rb, line 17
def self.configure(&block)
  yield configuration
end

Private Class Methods

configuration() click to toggle source

Returns an existing or instantiates a new configuration object.

# File lib/wayforpay.rb, line 25
def self.configuration
  @configuration ||= Util::Configuration.new
end