Simplify and speedup Hash#stringify_keys! References #10717 [Cheah Chu Yeow]

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8576 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
Jeremy Kemper
2008-01-06 20:28:17 +00:00
parent 9829212849
commit 523658c1df

View File

@@ -13,10 +13,7 @@ module ActiveSupport #:nodoc:
# Destructively convert all keys to strings.
def stringify_keys!
keys.each do |key|
unless key.class.to_s == "String" # weird hack to make the tests run when string_ext_test.rb is also running
self[key.to_s] = self[key]
delete(key)
end
self[key.to_s] = delete(key)
end
self
end