class Github::Client

def activity(options={}, &block)


provide access to notifications, subscriptions, and timelines.
Serving up the ‘social’ in Social Coding™, the Activity APIs
def activity(options={}, &block)
  @activity ||= ApiFactory.new('Activity', current_options.merge(options), &block)
end

def emojis(options={}, &block)

def emojis(options={}, &block)
  @emojis ||= ApiFactory.new('Emojis', current_options.merge(options), &block)
end

def gists(options={}, &block)

def gists(options={}, &block)
  @gists ||= ApiFactory.new('Gists', current_options.merge(options), &block)
end

def git_data(options={}, &block)

(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={}, &block)
  @git_data ||= ApiFactory.new('GitData', current_options.merge(options), &block)
end

def gitignore(options={}, &block)

def gitignore(options={}, &block)
  @gitignore ||= ApiFactory.new('Gitignore', current_options.merge(options), &block)
end

def issues(options={}, &block)

def issues(options={}, &block)
  @issues ||= ApiFactory.new('Issues', current_options.merge(options), &block)
end

def markdown(options={}, &block)

def markdown(options={}, &block)
  @markdown ||= ApiFactory.new('Markdown', current_options.merge(options), &block)
end

def meta(options={}, &block)

def meta(options={}, &block)
  @meta ||= ApiFactory.new('Meta', current_options.merge(options), &block)
end

def oauth(options={}, &block)

tokens, and only through Basic Authentication.
An API for users to manage their own tokens. You can only access your own
def oauth(options={}, &block)
  @oauth ||= ApiFactory.new('Authorizations', current_options.merge(options), &block)
end

def octocat(options={}, &block)

def octocat(options={}, &block)
  @octocat ||= ApiFactory.new('Say', current_options.merge(options), &block)
end

def orgs(options={}, &block)

def orgs(options={}, &block)
  @orgs ||= ApiFactory.new('Orgs', current_options.merge(options), &block)
end

def pull_requests(options={}, &block)

def pull_requests(options={}, &block)
  @pull_requests ||= ApiFactory.new('PullRequests', current_options.merge(options), &block)
end

def repos(options={}, &block)

def repos(options={}, &block)
  @repos ||= ApiFactory.new('Repos', current_options.merge(options), &block)
end

def scopes(options={}, &block)

def scopes(options={}, &block)
  @scopes ||= ApiFactory.new('Scopes', current_options.merge(options), &block)
end

def search(options={}, &block)

def search(options={}, &block)
  @search ||= ApiFactory.new('Search', current_options.merge(options), &block)
end

def users(options={}, &block)


information about the currently authenticated user.
Many of the resources on the users API provide a shortcut for getting
def users(options={}, &block)
  @users ||= ApiFactory.new('Users', current_options.merge(options), &block)
end