class BRL::Configuration

Attributes

auth_base_url[W]
handshake[W]
secret_key[W]

Public Instance Methods

auth_base_url() click to toggle source
# File lib/brl_auth.rb, line 46
def auth_base_url
  @auth_base_url ||= BRL::Auth::BASE_URL
end
handshake() click to toggle source
# File lib/brl_auth.rb, line 50
def handshake
  @handshake ||= ENV["BRL_HANDSHAKE"]
end
secret_key() click to toggle source
# File lib/brl_auth.rb, line 54
def secret_key
  @secret_key ||= ENV["BRL_SECRET_KEY"]
end