class Github::Client::Activity::Starring

def list(*args)

Other tags:
    Api: - public

Other tags:
    See: https://developer.github.com/v3/activity/starring/#list-stargazers -
def list(*args)
  arguments(args, required: [:user, :repo])
  response = get_request("/repos/#{arguments.user}/#{arguments.repo}/stargazers", arguments.params)
  return response unless block_given?
  response.each { |el| yield el }
end