class RichPerson

Private Instance Methods

run_before_create() click to toggle source
# File activerecord/test/models/person.rb, line 100
def run_before_create
  self.first_name = first_name.to_s + "run_before_create"
end
run_before_validation() click to toggle source
# File activerecord/test/models/person.rb, line 104
def run_before_validation
  self.first_name = first_name.to_s + "run_before_validation"
end