Class: String

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

Instance Method Summary collapse

Instance Method Details

#my_titleizeObject



260
261
262
# File 'lib/toccatore/base.rb', line 260

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