# File lib/glue/inflector.rb, line 29 def camelize(lower_case_and_underscored_word) lower_case_and_underscored_word.gsub(/(^|_)(.)/){$2.upcase} end