Class: String

Inherits:
Object
  • Object
show all
Defined in:
lib/toccatore/base.rb

Instance Method Summary collapse

Instance Method Details

#my_titleizeObject



358
359
360
# File 'lib/toccatore/base.rb', line 358

def my_titleize
  self.gsub(/(\b|_)(.)/) { "#{$1}#{$2.upcase}" }
end