Skip to content

Instantly share code, notes, and snippets.

@biographie
Created November 23, 2013 10:36
Show Gist options
  • Save biographie/7613074 to your computer and use it in GitHub Desktop.
Save biographie/7613074 to your computer and use it in GitHub Desktop.
class Post < ActiveRecord::Base
belongs_to :user
before_save :default_values
def default_values
self.cached_votes_total ||= 1
end
acts_as_votable
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment