class CurrentGame

Public Class Methods

game() click to toggle source
# File lib/current_game.rb, line 6
def self.game
  @@game
end
new(game) click to toggle source
# File lib/current_game.rb, line 2
def initialize(game)
  @@game = game
end