How can I code if I want the same error messages on all the validation?
I have 3 criterias such as presence, uniqueness and length.
I want the same error message.
But my code works only when it matched with length error.
How can I apply to all(other two)?
validates :title,
:presence => true,
:uniqueness => true,
:length => { :maximum => 100, :message => "Must be unique, and has to be less than 100 characters"}
