validate with errors


/ Published in: Ruby
Save to your folder(s)

validate :price_must_be_at_least_a_cent
protected def price_must_be_at_least_a_cent
errors.add(:price, 'should be at least 0.01') if price.nil? || price < 0.01
end

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.