Skip to content

Instantly share code, notes, and snippets.

@avk
Created February 21, 2009 10:47
Show Gist options
  • Save avk/68000 to your computer and use it in GitHub Desktop.
Save avk/68000 to your computer and use it in GitHub Desktop.
class Idea < ActiveRecord::Base
has_many :comments
acts_as_rateable
after_save :default_rating
validates_presence_of :name
validates_presence_of :body
def default_rating
rate(3)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment