Skip to content

Instantly share code, notes, and snippets.

@dchelimsky
Created November 3, 2008 17:29
Show Gist options
  • Save dchelimsky/21922 to your computer and use it in GitHub Desktop.
Save dchelimsky/21922 to your computer and use it in GitHub Desktop.
>> foo = Group.create(:name => 'Foo')
=> #<Group id: 4, name: "Foo">
>> bar = Group.find(4)
=> #<Group id: 4, name: "Foo">
>> bar.update_attributes(:name => 'Bar')
=> true
>> bar
=> #<Group id: 4, name: "Bar">
>> foo
=> #<Group id: 4, name: "Foo">
>> bar == foo
=> true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment