Last active
August 29, 2015 14:07
-
-
Save Shinpeim/d7e57797428909f8dc03 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
user = User.first | |
user.email = 'nyan' | |
user.changes # => {"email"=>["[email protected]", "[email protected]"]} | |
duped = user.dup | |
duped.name_chanded? # => true | |
duped.changes # => {"email"=>["", "[email protected]"]], "name"=>[""=>"shinpei"]} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment