Skip to content

Instantly share code, notes, and snippets.

@Shinpeim
Last active August 29, 2015 14:07
Show Gist options
  • Save Shinpeim/d7e57797428909f8dc03 to your computer and use it in GitHub Desktop.
Save Shinpeim/d7e57797428909f8dc03 to your computer and use it in GitHub Desktop.
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