summaryrefslogtreecommitdiff
path: root/lib/seeding/early_bird_seeding.rb
diff options
context:
space:
mode:
authorLuke Shumaker <shumakl@purdue.edu>2014-04-27 02:46:23 -0400
committerLuke Shumaker <shumakl@purdue.edu>2014-04-27 02:46:23 -0400
commit125d861972b9fcd99147d67b0e8fe4102f96190e (patch)
tree86b6d8d665a4e62592fe63836de9b19d4121f262 /lib/seeding/early_bird_seeding.rb
parentb7ef3c9078f40e5c23f53c59b7741883c3bc2fb7 (diff)
parent5301997c80401e0fa5d106dd4dbcd330b4708cfb (diff)
Merge branch 'master' of https://github.com/LukeShu/leaguer
Diffstat (limited to 'lib/seeding/early_bird_seeding.rb')
-rw-r--r--lib/seeding/early_bird_seeding.rb20
1 files changed, 20 insertions, 0 deletions
diff --git a/lib/seeding/early_bird_seeding.rb b/lib/seeding/early_bird_seeding.rb
new file mode 100644
index 0000000..30e15fc
--- /dev/null
+++ b/lib/seeding/early_bird_seeding.rb
@@ -0,0 +1,20 @@
+module Seeding
+ class EarlyBirdSeeding
+ def seed_matches(tournament)
+ matches = tournament.current_stage.matches
+ match = matches.first
+ match_num = 0
+ teams = 0
+ tournament.players.each_slice(tournament.min_players_per_team) do |slice|
+ if teams < tournament.min_teams_per_match
+ match.teams[teams].players += slice
+ teams += 1
+ else
+ match_num += 1
+ match = matches[match_num]
+ teams = 0
+ end
+ end
+ end
+ end
+end \ No newline at end of file