class Steep::Server::Master

def least_busy_worker

def least_busy_worker
  code_workers.min_by do |w|
    paths_for(w).size
  end
end