method
before_save
before_save()
public
Is called before Base.save (regardless of whether it’s a create or update save).
Register or
log in
to add new notes.
maratk -
February 25, 2010
1 thank
Saving other objects inside before_save
Don’t call .save or .update_attribute on other objects inside before_save callback.
Saving other objects inside of before_save callback results in flushing changed hash and the original object is not updated.
UPDATE observed sometimes, still investigating