class ActionDispatch::Request::Session

def stringify_keys(other)

def stringify_keys(other)
  other.each_with_object({}) { |(key, value), hash|
    hash[key.to_s] = value
  }
end