aboutsummaryrefslogtreecommitdiffstats
path: root/activemodel/test/models/person.rb
blob: 7b7e8feebc2277d06322232dc8983d0bdfb87dbd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
class Person
  include ActiveModel::Validations
  extend  ActiveModel::Translation

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

  def condition_is_true
    true
  end
end

class Person::Gender
  extend ActiveModel::Translation
end

class Child < Person
end

module PersonModule
  class Person < ::Person
  end
end