summaryrefslogtreecommitdiff
path: root/lib/seeding/early_bird_seeding.rb
blob: 5c289ed55c6d66b5fd1d3967b921ecc779c1f1a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
module Seeding
	module EarlyBirdSeeding
		def self.seed(tournament_stage)
			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.push Team.create(players: slice)
					teams += 1
				else
					match_num += 1
					match = matches[match_num]
					teams = 0
				end
			end
		end
	end
end