class Github::Client::Activity::Feeds

def list(*args)

Other tags:
    Api: - public

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