Class: Game

Inherits:
ApplicationRecord show all
Defined in:
app/models/game.rb

Class Method Summary collapse

Class Method Details

.all_games โ‡’ Object

[View source]

7
8
9
# File 'app/models/game.rb', line 7

def self.all_games
  Game.all.filter { |g| g.id != -1 }.map { |g| g.name }
end