Class: String
- Inherits:
-
Object
- Object
- String
- Defined in:
- lib/core_additions.rb
Instance Method Summary collapse
Instance Method Details
#dot_camelize ⇒ Object
2 3 4 |
# File 'lib/core_additions.rb', line 2 def dot_camelize self.gsub(/(?:^|\.|_)(.)/) { $1.upcase } end |