peteonrails / vote_fu

Vote and Karma Management

This URL has Read+Write access

vote_fu / examples / voteable.rb
100644 10 lines (5 sloc) 0.143 kb
1
2
3
4
5
6
7
8
9
10
class Voteable < ActiveRecord::Base
 
  belongs_to :user
  
  acts_as_voteable
  
  named_scope :descending, :order => "created_at DESC"
 
  
end