class Pronto::Config

def fetch_integer(key)

def fetch_integer(key)
  full_key = env_key(key)
  (ENV[full_key] && Integer(ENV[full_key])) || @config_hash[key]
end