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

Version Path
activerecord-1.13.1 test/fixtures/comment.rb
activerecord-1.14.0 test/fixtures/comment.rb
activerecord-1.14.1 test/fixtures/comment.rb
activerecord-1.14.2 test/fixtures/comment.rb
activerecord-1.14.3 test/fixtures/comment.rb
activerecord-1.13.2 test/fixtures/comment.rb
activerecord-1.15.4 test/fixtures/comment.rb
activerecord-1.14.4 test/fixtures/comment.rb
activerecord-1.15.0 test/fixtures/comment.rb
activerecord-1.15.3 test/fixtures/comment.rb
activerecord-1.15.2 test/fixtures/comment.rb
activerecord-1.15.1 test/fixtures/comment.rb
activerecord-1.15.6 test/fixtures/comment.rb
activerecord-1.15.5 test/fixtures/comment.rb
activerecord-2.0.2 test/fixtures/comment.rb
activerecord-2.0.5 test/fixtures/comment.rb
activerecord-2.0.0 test/fixtures/comment.rb
activerecord-2.0.4 test/fixtures/comment.rb
activerecord-2.0.1 test/fixtures/comment.rb
activerecord_authorails-1.0.0 test/fixtures/comment.rb