Class: StringHelper

Inherits:
Object
  • Object
show all
Defined in:
lib/cryptoexchange/helpers/string_helper.rb

Class Method Summary collapse

Class Method Details

.camelize(str) ⇒ Object



3
4
5
# File 'lib/cryptoexchange/helpers/string_helper.rb', line 3

def camelize(str)
  str.split('_').map {|w| w.capitalize}.join
end