aboutsummaryrefslogtreecommitdiffstats
path: root/activemodel/test/models/person.rb
blob: 8dd8ceadad25d718a6bdc6e0ab2857f712319d0c (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
# frozen_string_literal: true

class Person
  include ActiveModel::Validations
  extend  ActiveModel::Translation

  attr_accessor :title, :karma, :salary, :gender

  def condition_is_true
    true
  end

  def condition_is_false
    false
  end
end

class Person::Gender
  extend ActiveModel::Translation
end

class Child < Person
end