Return a new hash with all keys converted to strings.
Convert all keys in the hash to strings.
@example
test = {:abc => 'def'} test.stringify_keys! test # => {'abc' => 'def'}
[Validate]