blairanderson
9/19/2014 - 2:49 AM

Simple_enum Simple_form

Simple_enum Simple_form

This was helpful.

meal.rb


class Meal < ActiveRecord::Base
  as_enum :type, [:breakfast, :brunch, :lunch, :dinner]

end

meals/_form.haml


= simple_form_for @meal do |f|
  = f.input :type, collection: enum_option_pairs(Meal, :type)