Module: DataMapper::NamingConventions::Field::UnderscoredAndPluralized
- Defined in:
- lib/dm-core/support/naming_conventions.rb
Class Method Summary collapse
Class Method Details
.call(property) ⇒ Object
58 59 60 |
# File 'lib/dm-core/support/naming_conventions.rb', line 58 def self.call(property) DataMapper::Inflector.pluralize(DataMapper::Inflector.underscore(property.name.to_s)).gsub('/', '_') end |