class Github::Users
def list(*args)
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(*args) arguments(args) response = get_request("/users", arguments.params) return response unless block_given? response.each { |el| yield el } end