to_hash()
Convert to a regular hash with string keys.
# File activesupport/lib/active_support/hash_with_indifferent_access.rb, line 376 def to_hash copy = Hash[self] copy.transform_values! { |v| convert_value_to_hash(v) } set_defaults(copy) copy end