Skip to content

Instantly share code, notes, and snippets.

View repoles's full-sized avatar

Lucas Repolês repoles

View GitHub Profile
Business.human_enum_name(:kind, :company) #=> "Pessoa juridíca"
Business.human_enum_name(:kind, :person) #=> "Pessoa física"
Business.human_enum_name(:status, :active) #=> "Ativa"
Business.human_enum_name(:status, :inactive) #=> "Inativa"
Business.human_enum_name(:status, :closed) #=> "Fechada"