ozfortress/citadel

View on GitHub
app/helpers/meta/games_helper.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Meta
  module GamesHelper
    def game_select
      ::Game.all.collect { |game| [game.name, game.id] }
    end
  end
end