Skip to content

Instantly share code, notes, and snippets.

@avand
Created October 5, 2010 00:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save avand/610752 to your computer and use it in GitHub Desktop.
Save avand/610752 to your computer and use it in GitHub Desktop.
def accept_offer
self.update_attributes! {
:offer_accepted_at => Time.now,
:offer_declined_at => nil
}
self
end
def decline_offer
self.update_attributes {
:offer_declined_at => Time.now,
:offer_accepted_at => nil
}
self
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment