Class: String

Inherits:
Object
  • Object
show all
Defined in:
lib/exact_target_rest/support/string_extension.rb

Instance Method Summary collapse

Instance Method Details

#snake_to_camelObject



2
3
4
# File 'lib/exact_target_rest/support/string_extension.rb', line 2

def snake_to_camel
  self.gsub(/(?:_|^)([[:word:]])/) { $1.upcase }
end