In my Rails 4 app, i'd rather not have the default error validation messages so I'm using this (until I finally get around to client side validations).
validates :title, presence: true, :presence => { :message => "is required." }
By default this gets rendered as
Title is required.
How can I remove the :title, and submit my own message like:
:message => "Please add a title to your collection."
Any help is appreciated. As always, thanks!