method

_singularize

_singularize(string)
private

No documentation available.

# File activemodel/lib/active_model/naming.rb, line 194
    def _singularize(string)
      ActiveSupport::Inflector.underscore(string).tr('/'.freeze, '_'.freeze)
    end