Sorry for my english ...
I need set some attributes to my object, but, I don't want to save them, I will save them after.
@object.attributes = params[:object]
@object.save
is working with other attributes like name, description ... but when I send habtm_object_ids[] rails save the association at this point:
@object.attributes = params[:object]
I want to avoid this behavior, some idea?
Thaks in advice.