class Github::Client::Repos::Keys
def list(*args)
- Api: - public
Parameters:
-
String
(String :repo
) -- :repo -
:user
(String
) --
Other tags:
- See: https://developer.github.com/v3/repos/keys/#list -
def list(*args) arguments(args, required: [:user, :repo]) response = get_request("/repos/#{arguments.user}/#{arguments.repo}/keys", arguments.params) return response unless block_given? response.each { |el| yield el } end