mirror of
https://github.com/github/rails.git
synced 2026-04-26 03:00:59 -04:00
10 lines
154 B
Ruby
10 lines
154 B
Ruby
class Person
|
|
include ActiveModel::Validations
|
|
extend ActiveModel::Translation
|
|
|
|
attr_accessor :title, :karma, :salary
|
|
end
|
|
|
|
class Child < Person
|
|
end
|