method

stringify_keys

stringify_keys(other)
private

No documentation available.

# File actionpack/lib/action_dispatch/request/session.rb, line 174
      def stringify_keys(other)
        other.each_with_object({}) { |(key, value), hash|
          hash[key.to_s] = value
        }
      end