Class: String

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

Instance Method Summary collapse

Instance Method Details

#my_titleizeObject



365
366
367
# File 'lib/toccatore/base.rb', line 365

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