Created
January 28, 2016 15:11
-
-
Save aldesantis/173a2808501e96417495 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
class Shoe < ActiveRecord::Base | |
validate :validate_size | |
private | |
def validate_size | |
return if size.blank? | |
return if size % 0.5 == 0 | |
errors.add :size, 'is not a multiple of 0.5' | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment