Skip to content

Instantly share code, notes, and snippets.

@mattantonelli
Last active January 30, 2025 13:55
Show Gist options
  • Save mattantonelli/423a2404a00e74fd55e43ce60496ce78 to your computer and use it in GitHub Desktop.
Save mattantonelli/423a2404a00e74fd55e43ce60496ce78 to your computer and use it in GitHub Desktop.
Round robin task assignment. Files are simply line delimited tasks/developers.
tasks = File.readlines('./tasks.txt', chomp: true).sort.freeze
developers = File.readlines('./developers.txt', chomp: true).shuffle.freeze
tasks.each_with_index do |task, i|
puts "#{task} - @#{developers[i % developers.size]}"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment