Last active
June 25, 2017 14:12
-
-
Save mariorcardoso/9c4d8bdb39290a022c06309df8c92556 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
> gary = Person.create(name: "Gary") | |
> gary.address_city = "Brooklyn" | |
> gary.address_state = "NY" | |
> gary.address | |
=> #<Address:0x007fcbfcce0188 @city="Brooklyn", @state="NY"> | |
> gary.address = Address.new("Brooklyn", "NY") | |
> gary.address | |
=> #<Address:0x007fcbfa3b2e78 @city="Brooklyn", @state="NY"> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
based on http://www.informit.com/articles/article.aspx?p=2220311&seqNum=11