Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've seen docs/websites show that custom validators should go in a /lib or /lib/validators directory of a project. I've found (by reading an answer to another post) that they only seem to work in config/initializers. Does anyone know, or have a pointer to official documentation that shows where custom validators should live?

share|improve this question

4 Answers

up vote 3 down vote accepted

lib/validators seems by far the cleanest. However you may need to load them in before your models, so probably from an initializer.

share|improve this answer

If you place your custom validators in app/validators they will be automatically loaded without needing to alter your config/application.rb file.

share|improve this answer
I don't know if there's some gem/config you need to add for this, but under rails 3.2.8 this doesn't work. Specifically, simply dropping your validator into app/validators/???.rb doesn't work. – Doug Aug 28 '12 at 6:22
7  
Doug try to name the validator file same way the validator class is named but underscored: MyCoolValidator goes to app/validators/my_cool_validator.rb – equivalent8 Sep 11 '12 at 8:50
+1 for the shortest answer ;) – Varun Vohra Sep 12 '12 at 19:56
7  
This should be the accepted answer in my opinion. – DavidJ Sep 13 '12 at 1:23
7  
@Doug you need to restart your server. The autoload paths are expanded on initialization so new subfolders will not get picked up until you do that. – Timo Lehto Oct 8 '12 at 23:36
show 1 more comment

If you add this to your /config/application.rb file:

config.autoload_paths += %W["#{config.root}/lib/validators/"]

Then Rails will automatically load your validators on start up (just like /config/initializers/), but you keep the clean structure of having your validators in one nice, well named spot.

share|improve this answer
8  
Good idea but your code needs some cleanup: config.autoload_paths += %W(#{config.root}/lib/validators/) – aNoble May 26 '11 at 20:46

Here's the official docs about custom validations. AFAIK its a good practice to keep them in the relevant models.

share|improve this answer
3  
Unless they're applicable to multiple models, in which case you should keep them elsewhere to stay DRY. – Andrew Marshall Mar 10 '11 at 17:18
Which is what they presumably are because otherwise there's little point in creating a separate class for them. – Jakub Hampl Mar 10 '11 at 17:29
3  
@Jakub Yes there is: Single Responsibility Principle – mattwynne May 23 '11 at 10:52

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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