class Github::Users

def list(params={})


users.list
users = Github::Users.new
= Examples

* :since - The integer ID of the last User that you’ve seen.
= Parameters

for GitHub.
This provides a dump of every user, in the order that they signed up

List all users.
def list(params={})
  normalize! params
  response = get_request("/users", params)
  return response unless block_given?
  response.each { |el| yield el }
end