Class: String

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

Instance Method Summary collapse

Instance Method Details

#my_titleizeObject



270
271
272
# File 'lib/toccatore/base.rb', line 270

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