voteable.rb 137 Bytes Edit Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 class Voteable < ActiveRecord::Base belongs_to :user acts_as_voteable scope :descending, :order => "created_at DESC" end