class StringHelper

Public Class Methods

camelize(str) click to toggle source
# File lib/cryptoexchange/helpers/string_helper.rb, line 3
def camelize(str)
  str.split('_').map {|w| w.capitalize}.join
end