module HumanEnumNameConcern
Public Instance Methods
Source
# File app/models/concerns/human_enum_name_concern.rb, line 7 def human_enum_name(attribute) enum_value = self[attribute].presence || public_send(attribute) self.class.human_enum_name(attribute, enum_value) end