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?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
||||
|
|
|
|
|||
|
|
|
If you place your custom validators in |
|||||||||||||||||
|
|
If you add this to your /config/application.rb file:
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. |
|||||
|
|
Here's the official docs about custom validations. AFAIK its a good practice to keep them in the relevant models. |
|||||||||||
|