# File lib/comment_methods.rb, line 10 def self.included(comment_model) comment_model.extend Finders comment_model.scope :in_order, -> { comment_model.order('created_at ASC') } comment_model.scope :recent, -> { comment_model.reorder('created_at DESC') } end