class Github::Client::Gists::Comments

def list(*args)

Other tags:
    Api: - public

Returns:
  • (Hash) -

Other tags:
    See: https://developer.github.com/v3/gists/comments/#list-comments-on-a-gist -
def list(*args)
  arguments(args, required: [:gist_id])
  response = get_request("/gists/#{arguments.gist_id}/comments",
                         arguments.params)
  return response unless block_given?
  response.each { |el| yield el }
end