aboutsummaryrefslogtreecommitdiffstats
path: root/activemodel/test/models/person.rb
blob: c83d768379ce7b5b374215f7cd22f085a6564d9f (plain) (blame)
1
2
3
4
5
6
7
8
9
class Person
  include ActiveModel::Validations
  extend  ActiveModel::Translation

  attr_accessor :title, :karma, :salary
end

class Child < Person
end