Skip to content

Instantly share code, notes, and snippets.

@adambair
Forked from gkilmain/expires_at method
Last active December 19, 2015 13:09
Show Gist options
  • Save adambair/5960374 to your computer and use it in GitHub Desktop.
Save adambair/5960374 to your computer and use it in GitHub Desktop.
before_save :set_expiration_date
def expired?
expires_at > Time.now
end
def set_expiration_date
expires_at = Time.now + 6.months
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment