Sha256: 46491edb73c341d6ced5e3db5170e90a475fe88ea20bc57ea6be5fca6f994f8d
Contents?: true
Size: 1.62 KB
Versions: 11
Compression:
Stored size: 1.62 KB
Contents
# encoding: utf-8 module SportDb module Model class Event < ActiveRecord::Base belongs_to :league belongs_to :season if ActiveRecord::VERSION::MAJOR == 3 has_many :rounds, :order => 'pos' # all (fix and flex) rounds has_many :groups, :order => 'pos' else has_many :rounds, -> { order('pos') } # all (fix and flex) rounds has_many :groups, -> { order('pos') } end has_many :games, :through => :rounds has_many :event_teams, :class_name => 'EventTeam' has_many :teams, :through => :event_teams has_many :event_grounds, :class_name => 'EventGround' has_many :grounds, :through => :event_grounds before_save :on_before_save def add_teams_from_ary!( team_keys ) team_keys.each do |team_key| team = Team.find_by_key!( team_key ) self.teams << team end end def on_before_save # event key is composite of league + season (e.g. at.2012/13) etc. self.key = "#{league.key}.#{season.key}" end def title "#{league.title} #{season.title}" end def full_title # includes season (e.g. year) puts "*** depreciated API call Event#full_title; use Event#title instead; full_title will get removed" "#{league.title} #{season.title}" end ##################### ## convenience helper for text parser/reader ### ## fix: use/add to_teams_table( rec ) for reuse # ## @known_teams = @event.known_teams_table def known_teams_table @known_teams_table ||= TextUtils.build_title_table_for( teams ) end # method known_teams_table end # class Event end # module Model end # module SportDb
Version data entries
11 entries across 11 versions & 1 rubygems