class Github::Client

def gists(options = {})

def gists(options = {})
  @gists ||= Github::Gists.new(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 ||= Github::GitData.new(options)
end

def issues(options = {})

def issues(options = {})
  @issues ||= Github::Issues.new(options)
end

def orgs(options = {})

def orgs(options = {})
  @orgs ||= Github::Orgs.new(options)
end

def pull_requests(options = {})

def pull_requests(options = {})
  @pull_requests ||= Github::PullRequests.new(options)
end

def repos(options = {})

def repos(options = {})
  @repos ||= Github::Repos.new(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 ||= Github::Users.new(options)
end