# File lib/active_support/core_ext/hash/keys.rb, line 23 def symbolize_keys! keys.each do |key| self[(key.to_sym rescue key) || key] = delete(key) end self end