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