class Github::Client
def events(options = {})
This is a read-only API to the GitHub events.
def events(options = {}) @events ||= ApiFactory.new 'Events', 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 issues(options = {})
def issues(options = {}) @issues ||= ApiFactory.new 'Issues', 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 users(options = {})
Many of the resources on the users API provide a shortcut for getting
def users(options = {}) @users ||= ApiFactory.new 'Users', options end