1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/activemodel/test/models/person.rb
2010-09-24 20:41:12 +02:00

18 lines
260 B
Ruby

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
module PersonModule
class Person < ::Person
end
end