blob: ff34565bdb4d058b2d2302e7e596e8b0fa35712a (
plain) (
blame)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
 | class Topic
  include ActiveModel::Validations
  include ActiveModel::Validations::Callbacks
  attr_accessor :title, :author_name, :content, :approved
  attr_accessor :after_validation_performed
  after_validation :perform_after_validation
  def initialize(attributes = {})
    attributes.each do |key, value|
      send "#{key}=", value
    end
  end
  def condition_is_true
    true
  end
  def condition_is_true_but_its_not
    false
  end
  def perform_after_validation
    self.after_validation_performed = true
  end
end
 |