# File lib/mongoid/extensions/string/inflections.rb, line 77 def identify if Mongoid.parameterize_keys key = "" each_char { |c| key += (CHAR_CONV[c] || c.downcase) }; key else self end end