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)