Method: Game.in_progress
- Defined in:
- lib/game.rb
.in_progress ⇒ Object
returns box scores for games that are in progress
18 19 20 21 |
# File 'lib/game.rb', line 18 def self.in_progress in_progress = request_service('ActiveBoxScores') in_progress.nil? ? in_progress : "No games in progress." end |