module Hanami module Model # Conventional name for entities. # # Given a repository named SourceFileRepository, the associated # entity will be SourceFile. # # @since 0.7.0 # @api private class EntityName # @since 0.7.0 # @api private SUFFIX = /Repository\z/.freeze # @param name [Class,String] the class or its name # @return [String] the entity name # # @since 0.7.0 # @api private def initialize(name) @name = name.sub(SUFFIX, '') end # @since 0.7.0 # @api private def underscore Utils::String.underscore(@name).to_sym end # @since 0.7.0 # @api private def to_s @name end end end end