aboutsummaryrefslogblamecommitdiffstats
path: root/activemodel/test/models/person.rb
blob: e896e90f9842e9d4ac125a0a25238f8e346a7116 (plain) (tree)
1
2
3
4
5
6
7
8
9

                                  
                                  
 
                                                



                       
   
 



                                 

                    
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