module Github::RateLimit

def ratelimit(*args)

def ratelimit(*args)
  arguments(args)
  get_request("/rate_limit", arguments.params).rate.limit
end

def ratelimit_remaining(*args)

def ratelimit_remaining(*args)
  arguments(args)
  get_request("/rate_limit", arguments.params).rate.remaining
end

def ratelimit_reset(*args)

def ratelimit_reset(*args)
  arguments(args)
  get_request("/rate_limit", arguments.params).rate.reset
end