Class: CFB::Game

Inherits:
ApiModel show all
Defined in:
lib/cfb_api/models.rb

Instance Method Summary collapse

Instance Method Details

#start_date=(val) ⇒ Object Also known as: date=



78
79
80
81
# File 'lib/cfb_api/models.rb', line 78

def start_date=(val)
  val = Date.strptime(val) if val.is_a? String
  super(val)
end

#to_sObject



83
84
85
# File 'lib/cfb_api/models.rb', line 83

def to_s
  "#{away_team} @ #{home_team} (Week #{week}, #{season})"
end