inflect_names(name)private
No documentation available.
# File railties/lib/rails_generator/base.rb, line 258
def inflect_names(name)
camel = name.camelize
under = camel.underscore
plural = under.pluralize
[camel, under, plural]
end