Clean up Verification.contain

This commit is contained in:
Prommah 2015-11-04 14:26:32 +00:00
parent 9ef8b7a24b
commit 7bbb1a1fb1

View file

@ -56,9 +56,6 @@ module Verification
# TODO: rikki?
# Returns true if params (or its keys) are a subset of filter
def self.contain(params, filter)
(params.instance_of?(Array) ? params : params.keys).each do |key|
return false unless filter.include? key.to_sym
end
true
((params.instance_of?(Array) ? params : params.keys) - filter).empty?
end
end