changed_attributes() public

Returns a hash of the attributes with unsaved changes indicating their original values like attr => original value.

person.name # => "bob" person.name = 'robert' person.changed_attributes # => {"name" => "bob"}
Show source
Register or log in to add new notes.