Guest User

Untitled

a guest
Apr 21st, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. validates :one_of_these_is_greater_than_zero?
  2.  
  3. def one_of_these_is_greater_than_zero?
  4. errors.add_to_base("one of these must be greater than zero!") and return false unless field1 > 0 || field2 > 0 || field3 > 0
  5. end
Add Comment
Please, Sign In to add comment