= private = protected
symbolize_keys()
Return a new hash with all keys converted to symbols.
# File activesupport/lib/active_support/core_ext/hash/keys.rb, line 25 def symbolize_keys inject({}) do |options, (key, value)| options[key.to_sym] = value options end end