Skip to content

Instantly share code, notes, and snippets.

@xxx
Created December 1, 2009 04:18
Show Gist options
  • Save xxx/246048 to your computer and use it in GitHub Desktop.
Save xxx/246048 to your computer and use it in GitHub Desktop.
module DataMapper
module Resource
def save_attributes(attrs = {})
begin
update attrs
rescue DataMapper::UpdateConflictError
self.attributes = attrs
save
end
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment