module Alloy::KYC

Constants

VERSION

Attributes

configuration[RW]

Public Class Methods

configure() { |configuration| ... } click to toggle source
# File lib/alloy/kyc.rb, line 19
def self.configure
  self.configuration ||= Configuration.new
  yield(configuration) if block_given?
end
mock_mode!() click to toggle source
# File lib/alloy/kyc.rb, line 24
def self.mock_mode!
  self.configuration.backend = Alloy::KYC::Backends::Mock.new
end