Skip to content

Instantly share code, notes, and snippets.

@aldesantis
Created January 28, 2016 15:11
Show Gist options
  • Save aldesantis/173a2808501e96417495 to your computer and use it in GitHub Desktop.
Save aldesantis/173a2808501e96417495 to your computer and use it in GitHub Desktop.
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