Sha256: 92f2865bcb7bb86c4e30c5507de0af2e52a31fc3185e6684632b3d60741f1aa0

Contents?: true

Size: 1.87 KB

Versions: 20

Compression:

Stored size: 1.87 KB

Contents

require 'models/topic'

class Reply < Topic
  belongs_to :topic, :foreign_key => "parent_id", :counter_cache => true
  belongs_to :topic_with_primary_key, :class_name => "Topic", :primary_key => "title", :foreign_key => "parent_title", :counter_cache => "replies_count"
  has_many :replies, :class_name => "SillyReply", :dependent => :destroy, :foreign_key => "parent_id"
end

class UniqueReply < Reply
  belongs_to :topic, :foreign_key => 'parent_id', :counter_cache => true
  validates_uniqueness_of :content, :scope => 'parent_id'
end

class SillyUniqueReply < UniqueReply
end

class WrongReply < Reply
  validate :errors_on_empty_content
  validate :title_is_wrong_create, :on => :create

  validate :check_empty_title
  validate :check_content_mismatch, :on => :create
  validate :check_wrong_update, :on => :update
  validate :check_author_name_is_secret, :on => :special_case

  def check_empty_title
    errors[:title] << "Empty" unless attribute_present?("title")
  end

  def errors_on_empty_content
    errors[:content] << "Empty" unless attribute_present?("content")
  end

  def check_content_mismatch
    if attribute_present?("title") && attribute_present?("content") && content == "Mismatch"
      errors[:title] << "is Content Mismatch"
    end
  end

  def title_is_wrong_create
    errors[:title] << "is Wrong Create" if attribute_present?("title") && title == "Wrong Create"
  end

  def check_wrong_update
    errors[:title] << "is Wrong Update" if attribute_present?("title") && title == "Wrong Update"
  end

  def check_author_name_is_secret
    errors[:author_name] << "Invalid" unless author_name == "secret"
  end
end

class SillyReply < Reply
  belongs_to :reply, :foreign_key => "parent_id", :counter_cache => :replies_count
end

module Web
  class Reply < Web::Topic
    belongs_to :topic, :foreign_key => "parent_id", :counter_cache => true, :class_name => 'Web::Topic'
  end
end

Version data entries

20 entries across 20 versions & 3 rubygems

Version Path
ibm_db-5.2.0 test/models/reply.rb
ibm_db-5.1.0 test/models/reply.rb
ibm_db-5.0.5 test/models/reply.rb
ibm_db-5.0.4 test/models/reply.rb
ibm_db-5.0.3 test/models/reply.rb
ibm_db-5.0.2 test/models/reply.rb
ibm_db-4.0.0-x86-mingw32 test/models/reply.rb
ibm_db-4.0.0 test/models/reply.rb
ibm_db-3.0.4-x86-mingw32 test/models/reply.rb
ibm_db-3.0.4 test/models/reply.rb
ibm_db-3.0.3-x86-mingw32 test/models/reply.rb
ibm_db-3.0.3 test/models/reply.rb
ibm_db-3.0.2-x86-mingw32 test/models/reply.rb
ibm_db-3.0.2 test/models/reply.rb
activejob-lock-0.0.2 rails/activerecord/test/models/reply.rb
ibm_db-3.0.1 test/models/reply.rb
ibm_db-3.0.1-x86-mingw32 test/models/reply.rb
activejob-lock-0.0.1 rails/activerecord/test/models/reply.rb
activerecord-nuodb-adapter-1.1 test/models/reply.rb
activerecord-nuodb-adapter-1.0.4 test/models/reply.rb