aboutsummaryrefslogtreecommitdiffstats
path: root/activemodel/lib/active_model/validations/with.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activemodel/lib/active_model/validations/with.rb')
-rw-r--r--activemodel/lib/active_model/validations/with.rb5
1 files changed, 1 insertions, 4 deletions
diff --git a/activemodel/lib/active_model/validations/with.rb b/activemodel/lib/active_model/validations/with.rb
index 8313aded11..626e9d5731 100644
--- a/activemodel/lib/active_model/validations/with.rb
+++ b/activemodel/lib/active_model/validations/with.rb
@@ -50,10 +50,7 @@ module ActiveModel
#
def validates_with(*args)
options = args.extract_options!
-
- args.each do |klass|
- validate klass.new(options.except(:on, :if, :unless)), options
- end
+ args.each { |klass| validate(klass.new(options), options) }
end
end
end