Rails select_tag/dropdown with enums
I found the answer myself by trial-and-error.
<%= select_tag :status, options_for_select(Lead.statuses.map {|k, v| [k.humanize.capitalize, v]}) %>
You can use following code for select status enum as options:<%= select_tag :status, options_for_select(Lead.statuses) %>