Skip to content

Instantly share code, notes, and snippets.

@mariorcardoso
Last active June 25, 2017 14:12
Show Gist options
  • Save mariorcardoso/9c4d8bdb39290a022c06309df8c92556 to your computer and use it in GitHub Desktop.
Save mariorcardoso/9c4d8bdb39290a022c06309df8c92556 to your computer and use it in GitHub Desktop.
> 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">
@mariorcardoso
Copy link
Author

mariorcardoso commented Jun 17, 2017

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment