blob: b61fdf76b1a10cd778c7923618056eb761f36cff (
plain) (
tree)
|
|
# frozen_string_literal: true
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
|