module Ardm::NamingConventions::Field::UnderscoredAndPluralizedWithoutModule

Public Class Methods

call(property) click to toggle source
# File lib/ardm/support/naming_conventions.rb, line 70
def self.call(property)
  Ardm::Inflector.pluralize(Ardm::Inflector.underscore(Ardm::Inflector.demodulize(property.name.to_s)))
end