diff options
author | Kuldeep Aggarwal <kd.engineer@yahoo.co.in> | 2014-06-10 12:27:17 +0530 |
---|---|---|
committer | Kuldeep Aggarwal <kd.engineer@yahoo.co.in> | 2014-06-10 12:27:17 +0530 |
commit | e5cc892ce66968d4e15ea3fbf62a9fdd43b410d9 (patch) | |
tree | a1962d57d8ad1857df2f7a5d412fe61c00d7328b /activemodel/lib | |
parent | 254efb712ac10fd8e165fb34bb459f4abd59b213 (diff) | |
download | rails-e5cc892ce66968d4e15ea3fbf62a9fdd43b410d9.tar.gz rails-e5cc892ce66968d4e15ea3fbf62a9fdd43b410d9.tar.bz2 rails-e5cc892ce66968d4e15ea3fbf62a9fdd43b410d9.zip |
remove depricated Validatior#setup
Diffstat (limited to 'activemodel/lib')
-rw-r--r-- | activemodel/lib/active_model/validator.rb | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/activemodel/lib/active_model/validator.rb b/activemodel/lib/active_model/validator.rb index bddacc8c45..65cb1e5a88 100644 --- a/activemodel/lib/active_model/validator.rb +++ b/activemodel/lib/active_model/validator.rb @@ -106,7 +106,6 @@ module ActiveModel # Accepts options that will be made available through the +options+ reader. def initialize(options = {}) @options = options.except(:class).freeze - deprecated_setup(options) end # Returns the kind for this validator. @@ -122,21 +121,6 @@ module ActiveModel def validate(record) raise NotImplementedError, "Subclasses must implement a validate(record) method." end - - private - def deprecated_setup(options) # TODO: remove me in 4.2. - return unless respond_to?(:setup) - ActiveSupport::Deprecation.warn "The `Validator#setup` instance method is deprecated and will be removed on Rails 4.2. Do your setup in the constructor instead: - -class MyValidator < ActiveModel::Validator - def initialize(options={}) - super - options[:class].send :attr_accessor, :custom_attribute - end -end -" - setup(options[:class]) - end end # +EachValidator+ is a validator which iterates through the attributes given |