class Github::Client::Users::Followers

def list(*args)

Other tags:
    Api: - public
def list(*args)
  params = arguments(args).params
  response = if user_name = arguments.remaining.first
    get_request("/users/#{user_name}/followers", params)
  else
    get_request("/user/followers", params)
  end
  return response unless block_given?
  response.each { |el| yield el }
end