class Github::Client::Activity::Watching

def list(*args)

Other tags:
    Api: - public

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