Sha256: 88c4840e427ee22eb5065fd0a0bd68aaabaf2cdbd1ec55631cefd17988bc0a63

Contents?: true

Size: 808 Bytes

Versions: 25

Compression:

Stored size: 808 Bytes

Contents

class Topic < ActiveRecord::Base
  validates_presence_of :author_name
  validates :title, numericality: { only_integer: true }, on: :context_test
  validates :title, uniqueness: true
  validates :content, uniqueness: true
  validates :word_count, numericality: { greater_than: 0 }, if: :content?

  validate -> { errors.add(:title, :validate_failed) if title == 'validate_failed' }
  before_validation -> { errors.add(:title, :invalid) if title == 'invalid' }

  has_many :books, inverse_of: :topic
  belongs_to :parent, class_name: "Topic"

  composed_of :description, mapping: [%w(title title), %w(author_name author_name)], allow_nil: true, class_name: "TopicDescription"

  default_scope { where(approved: true) }

  private

  def word_count
    @word_count ||= content.to_s.scan(/\w+/).count
  end
end

Version data entries

25 entries across 25 versions & 2 rubygems

Version Path
activerecord-import-0.24.0 test/models/topic.rb
activerecord-import-0.23.0 test/models/topic.rb
activerecord-import-0.22.0 test/models/topic.rb
activerecord-import-0.21.0 test/models/topic.rb
activerecord-import-0.20.2 test/models/topic.rb