I try to follow http://api.rubyonrails.org/classes/ActiveModel/Validator.html , but where should I put the

 class MyValidator < ActiveModel::Validator
    def validate(record)
      if some_complex_logic
        record.errors[:base] = "This record is invalid"
      end
    end

    private
      def some_complex_logic
        # ...
      end
  end
link|improve this question

feedback

3 Answers

up vote 1 down vote accepted

Add this class in your lib directory and require it in your model and include it inside.

link|improve this answer
feedback

This guy puts them under app/validators/, which I've done as well, ever since I saw that blog post.

link|improve this answer
feedback

Alternatively, you can also add it to the models directory of your app. Also, as mentioned by shingara, you need to add,

include ActiveModel::Validations
validates_with MyValidator 

to the model file of the record class.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.