Sha256: 359b5d30a78f237d9b7ce7ea9b4a65e67386dccd7f153d24da424597dc2c9473
Contents?: true
Size: 1.15 KB
Versions: 4
Compression:
Stored size: 1.15 KB
Contents
# encoding: utf-8 module Github class Client < API def gists(options = {}) @gists ||= _create_instance Github::Gists, options end # The Git Database API gives you access to read and write raw Git objects # to your Git database on GitHub and to list and update your references # (branch heads and tags). def git_data(options = {}) @git_data ||= _create_instance Github::GitData, options end alias :git :git_data def issues(options = {}) @issues ||= _create_instance Github::Issues, options end def orgs(options = {}) @orgs ||= _create_instance Github::Orgs, options end alias :organizations :orgs def pull_requests(options = {}) @pull_requests ||= _create_instance Github::PullRequests, options end def repos(options = {}) @repos ||= _create_instance Github::Repos, options end alias :repositories :repos # Many of the resources on the users API provide a shortcut for getting # information about the currently authenticated user. def users(options = {}) @users ||= _create_instance Github::Users, options end end # Client end # Github
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
github_api-0.2.2 | lib/github_api/client.rb |
github_api-0.2.1 | lib/github_api/client.rb |
github_api-0.2.0 | lib/github_api/client.rb |
github_api-0.1.2 | lib/github_api/client.rb |