I try to add an email-validator in my rails app. I created the following file /lib/validators/email_validator.rb
/lib/validators/email_validator.rb
class EmailValidator < Activ
If you place your custom validators in app/validators they will be automatically loaded without needing to alter your config/application.rb file.
Resource: Where should Rails 3 custom validators be stored? (second answer)