class Config

Public Class Methods

new() click to toggle source
# File lib/lazuli.rb, line 6
def initialize
  path = File.join(
    File.expand_path("~"),
    ".lazuli.conf"
  )
  @config = ParseConfig.new(path)
end

Public Instance Methods

get_access_key() click to toggle source
# File lib/lazuli.rb, line 13
def get_access_key 
  return @config['access_key']
end
get_partner_tag() click to toggle source
# File lib/lazuli.rb, line 19
def get_partner_tag 
  return @config['partner_tag']
end
get_secret_key() click to toggle source
# File lib/lazuli.rb, line 16
def get_secret_key 
  return @config['secret_key']
end