class Bashly::Settings

def get(key)

def get(key)
  case env_value key
  when nil                 then config[key.to_s]
  when '0', 'false', 'no'  then false
  when '1', 'true', 'yes'  then true
  else                     env_value key
  end
end