Skip to content

Instantly share code, notes, and snippets.

@bricker
Created February 24, 2014 23:24
Show Gist options
  • Save bricker/9199436 to your computer and use it in GitHub Desktop.
Save bricker/9199436 to your computer and use it in GitHub Desktop.
def open_and_close_present_together
[:mon, :tue, :wed, :thur, :fri, :sat, :sun].each do |day|
if send("#{day}_o").blank? ^ send("#{day}_c").blank?
errors.add(day, "must have open and close times")
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment