Skip to content

Instantly share code, notes, and snippets.

@jakcharlton
Created October 23, 2010 03:52
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 jakcharlton/641746 to your computer and use it in GitHub Desktop.
Save jakcharlton/641746 to your computer and use it in GitHub Desktop.
if last_vote_date.nil? || last_vote_date.utc < 1.day.ago
self.last_vote_date = Time.now
self.votes_per_day = 1
else
self.votes_per_day += 1
end
if self.votes_per_day <= 10
self.reputation += 1
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment