1
0
mirror of https://github.com/jcwimer/wrestlingApp synced 2026-04-12 16:25:41 +00:00

Made pool and bout classes. Still need to fix bouts doubling on every

refresh of upcoming matches view
This commit is contained in:
2014-12-15 13:12:39 -05:00
parent 73edb4a765
commit 1899218798
6 changed files with 54 additions and 43 deletions

30
app/models/pool.rb Normal file
View File

@@ -0,0 +1,30 @@
class Pool
def createPool(tournament)
@weights = Weight.where(tournament_id: tournament)
@weights.each do |weight|
roundRobin(weight,tournament)
end
end
def createBout(wrestler,tournament)
@bout = Bout.new
@bout.w1 = wrestler.id
@bout.tournament_id = tournament
end
def roundRobin(weight,tournament)
@wrestlers = Wrestler.where(weight_id: weight)
@wrestlers.each do |wrestler|
createBout(wrestler,tournament)
end
end
def self.all
ObjectSpace.each_object(self).to_a
end
def self.count
all.count
end
end