class String
def titleize
'man from the boondocks'.titleize # => "Man From The Boondocks"
+titleize+ is also aliased as +titlecase+.
used in the Rails internals.
a nicer looking title. +titleize+ is meant for creating pretty output. It is not
Capitalizes all the words and replaces some characters in the string to create
def titleize ActiveSupport::Inflector.titleize(self) end