Skip to content

Instantly share code, notes, and snippets.

@benjgorman
Created November 23, 2011 22:38
Show Gist options
  • Save benjgorman/1390142 to your computer and use it in GitHub Desktop.
Save benjgorman/1390142 to your computer and use it in GitHub Desktop.
Errors
def validate_card
unless credit_card.valid?
credit_card.errors.full_messages.each do |message|
# errors.add_to_base message
self.errors[:base] << message
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment