DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Full Error Messages
class User < ActiveRecord::Base
validate do |user|
user.errors.add_to_base("Country can't be blank") if user.country_iso.blank?
end
end
<%= error_messages_for :game, :header_message => "Please Try Again!", :message => "We had some problems starting the game:" %>





