Is there a way to override the .titleize method in RoR?
For example, titleize does not work for names like TJ Watson. It converts 'tj watson' to Tj Watson. I would like to add such rules to it.
Also, I don't want to define a new method because my code already uses .titleize through it. How can I add features to titleize without having to change the method calls throughout the code?