Class: String
- Inherits:
-
Object
- Object
- String
- Defined in:
- lib/toccatore/base.rb
Instance Method Summary collapse
Instance Method Details
#my_titleize ⇒ Object
270 271 272 |
# File 'lib/toccatore/base.rb', line 270 def my_titleize self.gsub(/(\b|_)(.)/) { "#{$1}#{$2.upcase}" } end |