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