class NestedPerson
Public Instance Methods
best_friend_first_name=(new_name)
click to toggle source
# File activerecord/test/models/person.rb, line 119 def best_friend_first_name=(new_name) assign_attributes(best_friend_attributes: { first_name: new_name }) end
comments=(new_comments)
click to toggle source
# File activerecord/test/models/person.rb, line 115 def comments=(new_comments) raise RuntimeError end