1
I made the field select sex that way:
model:
enum sexo: [:feminino, :masculino, :desconhecido]
    def self.sexes_for_select
        sexos.keys.map{ |x| [x.humanize, x] }
    end
form:
<%= f.select :sexo, Pessoa.sexes_for_select %>
The problem is I can’t add sex selection, anyone? = D