class Github::Client

def gists(options = {})

def gists(options = {})
  @gists ||= _create_instance Github::Gists, options
end

def git_data(options = {})

(branch heads and tags).
to your Git database on GitHub and to list and update your references
The Git Database API gives you access to read and write raw Git objects
def git_data(options = {})
  @git_data ||= _create_instance Github::GitData, options
end

def issues(options = {})

def issues(options = {})
  @issues ||= _create_instance Github::Issues, options
end

def orgs(options = {})

def orgs(options = {})
  @orgs ||= _create_instance Github::Orgs, options
end

def pull_requests(options = {})

def pull_requests(options = {})
  @pull_requests ||= _create_instance Github::PullRequests, options
end

def repos(options = {})

def repos(options = {})
  @repos ||= _create_instance Github::Repos, options
end

def users(options = {})

information about the currently authenticated user.
Many of the resources on the users API provide a shortcut for getting
def users(options = {})
  @users ||= _create_instance Github::Users, options
end