.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" |