Created
November 23, 2011 22:38
-
-
Save benjgorman/1390142 to your computer and use it in GitHub Desktop.
Errors
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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