blob: cf16a38618c839bff67610593344cade39a0857c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
class Person
include ActiveModel::Validations
extend ActiveModel::Translation
attr_accessor :title, :karma, :salary, :gender
def condition_is_true
true
end
end
class Child < Person
end
|