aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support
diff options
context:
space:
mode:
authorYehuda Katz <wycats@gmail.com>2008-12-26 23:16:52 -0800
committerYehuda Katz <wycats@gmail.com>2008-12-26 23:16:52 -0800
commit5da3ba12159d2c4fc0680efcf0cad8a31f725122 (patch)
tree171025033fbebe6d9a16102647bac659a612334b /activesupport/lib/active_support
parent9b2da52914720d87d2c6d6d94f7fab6a86a70daf (diff)
parentf4f8923cf0ef5bd31f9e98cecf4603d0c4bde296 (diff)
downloadrails-5da3ba12159d2c4fc0680efcf0cad8a31f725122.tar.gz
rails-5da3ba12159d2c4fc0680efcf0cad8a31f725122.tar.bz2
rails-5da3ba12159d2c4fc0680efcf0cad8a31f725122.zip
Merge commit 'rails/master'
Diffstat (limited to 'activesupport/lib/active_support')
-rw-r--r--activesupport/lib/active_support/core_ext/hash/slice.rb9
1 files changed, 8 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/core_ext/hash/slice.rb b/activesupport/lib/active_support/core_ext/hash/slice.rb
index 88df49a69f..d845a6d8ca 100644
--- a/activesupport/lib/active_support/core_ext/hash/slice.rb
+++ b/activesupport/lib/active_support/core_ext/hash/slice.rb
@@ -24,10 +24,17 @@ module ActiveSupport #:nodoc:
end
# Replaces the hash with only the given keys.
+ # Returns a hash contained the removed key/value pairs
+ # {:a => 1, :b => 2, :c => 3, :d => 4}.slice!(:a, :b) # => {:c => 3, :d =>4}
def slice!(*keys)
- replace(slice(*keys))
+ keys = keys.map! { |key| convert_key(key) } if respond_to?(:convert_key)
+ omit = slice(*self.keys - keys)
+ hash = slice(*keys)
+ replace(hash)
+ omit
end
end
end
end
end
+