Module: Pod::GitHub
- Defined in:
- lib/cocoapods-core/github.rb
Overview
Allows to access information about the GitHub repos.
This class is stored in Core because it might be used by web services.
Class Method Summary collapse
-
.branches(url) ⇒ Array
Returns the branches of a repo.
-
.contents(url, path = nil, branch = nil) ⇒ Array, Hash
Returns the contents of a file or directory in a repository.
-
.repo(url) ⇒ Hash
Returns the information of a repo.
-
.tags(url) ⇒ Array
Returns the tags of a repo.
-
.user(login) ⇒ Hash
Returns the information of a user.
Class Method Details
.branches(url) ⇒ Array
Returns the branches of a repo.
49 50 51 52 53 |
# File 'lib/cocoapods-core/github.rb', line 49 def self.branches(url) if repo_id = normalized_repo_id(url) peform_request("https://api.github.com/repos/#{repo_id}/branches") end end |
.contents(url, path = nil, branch = nil) ⇒ Array, Hash
Returns the contents of a file or directory in a repository.
70 71 72 73 74 75 76 77 |
# File 'lib/cocoapods-core/github.rb', line 70 def self.contents(url, path = nil, branch = nil) if repo_id = normalized_repo_id(url) request_url = "https://api.github.com/repos/#{repo_id}/contents" request_url << "/#{path}" if path request_url << "?ref=#{branch}" if branch peform_request(request_url) end end |
.repo(url) ⇒ Hash
Returns the information of a repo.
25 26 27 28 29 |
# File 'lib/cocoapods-core/github.rb', line 25 def self.repo(url) if repo_id = normalized_repo_id(url) peform_request("https://api.github.com/repos/#{repo_id}") end end |
.tags(url) ⇒ Array
Returns the tags of a repo.
37 38 39 40 41 |
# File 'lib/cocoapods-core/github.rb', line 37 def self.(url) if repo_id = normalized_repo_id(url) peform_request("https://api.github.com/repos/#{repo_id}/tags") end end |
.user(login) ⇒ Hash
Returns the information of a user.
14 15 16 |
# File 'lib/cocoapods-core/github.rb', line 14 def self.user(login) peform_request("https://api.github.com/users/#{login}") end |