Class: GithubCLI::User
- Inherits:
-
API
- Object
- API
- GithubCLI::User
show all
- Defined in:
- lib/github_cli/apis/user.rb
Class Method Summary
collapse
Methods inherited from API
configure, github_api, output, set_basic_auth
Class Method Details
.all(params, options) ⇒ Object
8
9
10
11
12
|
# File 'lib/github_cli/apis/user.rb', line 8
def all(params, options)
output options do
github_api(options).users.all params
end
end
|
.get(params, options) ⇒ Object
14
15
16
17
18
|
# File 'lib/github_cli/apis/user.rb', line 14
def get(params, options)
output options do
github_api(options).users.get params
end
end
|
.update(params, options) ⇒ Object
20
21
22
23
24
|
# File 'lib/github_cli/apis/user.rb', line 20
def update(params, options)
output options do
github_api(options).users.update params
end
end
|