mirror of
https://github.com/jcwimer/wrestlingApp
synced 2026-03-25 01:14:43 +00:00
19 lines
352 B
Ruby
19 lines
352 B
Ruby
class WipeTournamentMatches
|
|
|
|
def initialize( tournament )
|
|
@tournament = tournament
|
|
end
|
|
|
|
def setUpMatchGeneration
|
|
wipeMatches
|
|
resetSchoolScores
|
|
end
|
|
|
|
def wipeMatches
|
|
@tournament.matches.destroy_all
|
|
end
|
|
|
|
def resetSchoolScores
|
|
@tournament.schools.update_all("score = 0.0")
|
|
end
|
|
end |