.camelize | #=> | "Foo::Bars" |
.classify | #=> | "Foo::Bar" |
.constantize | #=> | Foo/bars |
.dasherize | #=> | "Foo/bars" |
.deconstantize | #=> | "" |
.demodulize | #=> | "Foo/bars" |
.foreign_key | #=> | "foo/bars_id" |
.humanize | #=> | "Foo/bars" |
.ordinal | #=> |
|
.ordinalize | #=> |
|
.parameterize | #=> | "foo-bars" |
.pluralize | #=> | "Foo/bars" |
.safe_constantize | #=> | nil |
.singularize | #=> | "Foo/bar" |
.tableize | #=> | "foo/bars" |
.titleize | #=> | "Foo/Bars" |
.underscore | #=> | "foo/bars" |
.upcase_first | #=> | "Foo/bars" |