Class: GithubCLI::Fork
- Inherits:
-
API
- Object
- API
- GithubCLI::Fork
show all
- Defined in:
- lib/github_cli/apis/fork.rb
Class Method Summary
collapse
Methods inherited from API
configure, github_api, output, set_basic_auth
Class Method Details
.all(user, repo, params, options) ⇒ Object
8
9
10
11
12
|
# File 'lib/github_cli/apis/fork.rb', line 8
def all(user, repo, params, options)
output options do
github_api(options).repos.forks.list user, repo, params
end
end
|
.create(user, repo, params, options) ⇒ Object
14
15
16
17
18
|
# File 'lib/github_cli/apis/fork.rb', line 14
def create(user, repo, params, options)
output options do
github_api(options).repos.forks.create user, repo, params
end
end
|