Method: String#camel_case

Defined in:
lib/strokedb/core_ext/string.rb

#camel_caseObject Also known as: camelize



9
10
11
# File 'lib/strokedb/core_ext/string.rb', line 9

def camel_case
  split('_').map{|e| e.capitalize}.join
end