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