Sha256: 1479fa8a1827cbf38e42cbf8fce4424a5200433c0e04317a7398435c8ad64b45
Contents?: true
Size: 404 Bytes
Versions: 91
Compression:
Stored size: 404 Bytes
Contents
class Comment < ActiveRecord::Base belongs_to :post 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
91 entries across 91 versions & 6 rubygems