class Stattleship::TeamGameLogs

Public Instance Methods

populate() click to toggle source
# File lib/stattleship/team_game_logs.rb, line 41
def populate
  team_game_logs.each do |team_game_log|
    populate_games(team_game_log)

    games.each do |game|
      populate_game(game)
    end

    populate_opponents(team_game_log)
    populate_officials(team_game_log)
    populate_teams(team_game_log)
  end
end