Is there a way to turn OFF autosave in Rails? I don't want modifications to an association to automatically save to the database UNTIL I call save on the parent object.
some_parent.some_children << child #should not save, just adds to the association!
some_parent.save #now parent and children are saved!
It this possible or am I barking up the wrong tree?