Skip to content

Instantly share code, notes, and snippets.

View larskuhnt's full-sized avatar

Lars Kuhnt larskuhnt

  • Berlin, Germany
View GitHub Profile
class Comment < ActiveRecord::Base
belongs_to :commentable, :polymorphic => true
default_scope :order => 'created_at ASC'
named_scope :recent, lambda { |limit| { :order => 'created_at DESC', :limit => limit } }
}