= 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 22 def symbolize_keys inject({}) do |options, (key, value)| options[(key.to_sym rescue key) || key] = value options end end