I am using the enums in Rails 4.1 to keep track of colors of wine.
Wine.rb
class Wine < ActiveRecord::Base enum color: [:red,
No need converting the enum hash to array with to_a. This suffice:
to_a
f.select :color, Wine.colors.map { |key, value| [key.humanize, key] }