aboutsummaryrefslogtreecommitdiffstats
path: root/activemodel/lib/active_model/validations/with.rb
diff options
context:
space:
mode:
authorNick Sutterer <apotonick@gmail.com>2013-05-13 13:59:28 +1000
committerRafael Mendonça França <rafaelmfranca@gmail.com>2013-05-23 10:00:44 -0300
commit7d84c3a2f7ede0e8d04540e9c0640de7378e9b3a (patch)
treeef7f47142b07726fc2c7a954d400a9c1ef7558e5 /activemodel/lib/active_model/validations/with.rb
parent30d28b19584783218e842ce2fd7bfe2bc1dccf66 (diff)
downloadrails-7d84c3a2f7ede0e8d04540e9c0640de7378e9b3a.tar.gz
rails-7d84c3a2f7ede0e8d04540e9c0640de7378e9b3a.tar.bz2
rails-7d84c3a2f7ede0e8d04540e9c0640de7378e9b3a.zip
deprecate Validator#setup (to get rid of a respond_to call). validators do their setup in their constructor now.
Diffstat (limited to 'activemodel/lib/active_model/validations/with.rb')
-rw-r--r--activemodel/lib/active_model/validations/with.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/activemodel/lib/active_model/validations/with.rb b/activemodel/lib/active_model/validations/with.rb
index 2ae335d0f4..16bd6670d1 100644
--- a/activemodel/lib/active_model/validations/with.rb
+++ b/activemodel/lib/active_model/validations/with.rb
@@ -83,9 +83,10 @@ module ActiveModel
# end
def validates_with(*args, &block)
options = args.extract_options!
+ options[:class] = self
+
args.each do |klass|
validator = klass.new(options, &block)
- validator.setup(self) if validator.respond_to?(:setup)
if validator.respond_to?(:attributes) && !validator.attributes.empty?
validator.attributes.each do |attribute|