Skip to content

Instantly share code, notes, and snippets.

@knowtheory
Created June 12, 2009 17:25
Show Gist options
  • Select an option

  • Save knowtheory/128777 to your computer and use it in GitHub Desktop.

Select an option

Save knowtheory/128777 to your computer and use it in GitHub Desktop.
>> b = Human.get(1)
=> #<Human @id=1 @first_name="Barack" @middle_name=nil @last_name="Obama">
>> b == Human.get(1)
=> true
>> b.middle_name = "Hussein"
=> "Hussein"
>> b == Human.get(1)
=> false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment