module WellsFargo

Constants

Configuration
VERSION

Public Instance Methods

client() click to toggle source
# File lib/wells_fargo.rb, line 22
def client
  @client ||= API.new(
    config.url,
    config.to_h.slice(
      :client_cert, :client_key, :consumer_key, :consumer_secret,
      :gateway_company_id, :gateway_entity_id
    )
  )
end
config() click to toggle source
# File lib/wells_fargo.rb, line 14
def config
  @config ||= Configuration.new
end
configure() { |config| ... } click to toggle source
# File lib/wells_fargo.rb, line 18
def configure
  yield config
end