class Github::Client
def activity(options = {})
provide access to notifications, subscriptions, and timelines.
Serving up the ‘social’ in Social Coding™, the Activity APIs
def activity(options = {}) @activity ||= ApiFactory.new 'Activity', options end
def emojis(options = {})
def emojis(options = {}) @emojis ||= ApiFactory.new 'Emojis', options end
def gists(options = {})
def gists(options = {}) @gists ||= ApiFactory.new 'Gists', options end
def git_data(options = {})
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 ||= ApiFactory.new 'GitData', options end
def gitignore(options = {})
def gitignore(options = {}) @gitignore ||= ApiFactory.new 'Gitignore', options end
def issues(options = {})
def issues(options = {}) @issues ||= ApiFactory.new 'Issues', options end
def markdown(options = {})
def markdown(options = {}) @markdown ||= ApiFactory.new 'Markdown', options end
def oauth(options = {})
An API for users to manage their own tokens. You can only access your own
def oauth(options = {}) @oauth ||= ApiFactory.new 'Authorizations', options end
def orgs(options = {})
def orgs(options = {}) @orgs ||= ApiFactory.new 'Orgs', options end
def pull_requests(options = {})
def pull_requests(options = {}) @pull_requests ||= ApiFactory.new 'PullRequests', options end
def repos(options = {})
def repos(options = {}) @repos ||= ApiFactory.new 'Repos', options end
def search(options = {})
def search(options = {}) @search ||= ApiFactory.new 'Search', 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 ||= ApiFactory.new 'Users', options end