Sha256: 6d7b754065783ab1f78abb7a01c5e034b7cfbaec1c9633c17204ffc8d893eda4
Contents?: true
Size: 510 Bytes
Versions: 43
Compression:
Stored size: 510 Bytes
Contents
class Comment < ActiveRecord::Base named_scope :containing_the_letter_e, :conditions => "comments.body LIKE '%e%'" belongs_to :post, :counter_cache => true def self.what_are_you 'a comment...' end def self.search_by_type(q) self.find(:all, :conditions => ["#{QUOTED_TYPE} = ?", q]) end end class SpecialComment < Comment def self.what_are_you 'a special comment...' end end class VerySpecialComment < Comment def self.what_are_you 'a very special comment...' end end
Version data entries
43 entries across 40 versions & 13 rubygems