diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2005-09-09 08:20:14 +0000 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2005-09-09 08:20:14 +0000 |
commit | 558331596fbf9139ef529b14d50c6e258e63fb67 (patch) | |
tree | 1728890354516066185d27610b556b46e876eb96 /activesupport/lib/active_support | |
parent | 7dbf051e5442713a34fe28d6480615eb6dbdc5c2 (diff) | |
download | rails-558331596fbf9139ef529b14d50c6e258e63fb67.tar.gz rails-558331596fbf9139ef529b14d50c6e258e63fb67.tar.bz2 rails-558331596fbf9139ef529b14d50c6e258e63fb67.zip |
Make assert_valid_keys slightly more lenient
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2166 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activesupport/lib/active_support')
-rw-r--r-- | activesupport/lib/active_support/core_ext/hash/keys.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/activesupport/lib/active_support/core_ext/hash/keys.rb b/activesupport/lib/active_support/core_ext/hash/keys.rb index 8725138856..3c8a59f00a 100644 --- a/activesupport/lib/active_support/core_ext/hash/keys.rb +++ b/activesupport/lib/active_support/core_ext/hash/keys.rb @@ -43,8 +43,8 @@ module ActiveSupport #:nodoc: alias_method :to_options, :symbolize_keys alias_method :to_options!, :symbolize_keys! - def assert_valid_keys(valid_keys) - unknown_keys = keys - valid_keys + def assert_valid_keys(*valid_keys) + unknown_keys = keys - [valid_keys].flatten raise(ArgumentError, "Unknown key(s): #{unknown_keys.join(", ")}") unless unknown_keys.empty? end end |