Class: String
- Inherits:
-
Object
- Object
- String
- Defined in:
- lib/cogbot/utils.rb
Instance Method Summary collapse
Instance Method Details
#camelize ⇒ Object
3 4 5 6 |
# File 'lib/cogbot/utils.rb', line 3 def camelize self.downcase! self.gsub!(/(?:_| )?(.)([^_ ]*)/) { "#{$1.upcase}#{$2}" } end |