module Abbyy::Inflector

Public Instance Methods

camelize(str) click to toggle source
# File lib/abbyy/inflector.rb, line 2
def camelize(str)
  str[0,1] << str.split('_').map{|w| w.capitalize}.join[1..-1]
end