module Ardm::NamingConventions::Resource::UnderscoredAndPluralized

Public Class Methods

call(name) click to toggle source
# File lib/ardm/support/naming_conventions.rb, line 30
def self.call(name)
  Ardm::Inflector.pluralize(Ardm::Inflector.underscore(name)).gsub('/', '_')
end