Class: String
- Inherits:
-
Object
- Object
- String
- Defined in:
- lib/util/string.rb
Instance Method Summary collapse
Instance Method Details
#camel_case_lower ⇒ Object
2 3 4 |
# File 'lib/util/string.rb', line 2 def camel_case_lower split('_').inject([]) { |buffer, e| buffer.push(buffer.empty? ? e : e.capitalize) }.join end |