How does one set up a transaction for multiple models? For example, how
do you wrap the entire logic below in one transaction?
#begin transaction
for bar in foo.bars
bar.something += 1
bar.save
end
foo.something += 1
foo.save
#end transaction
For even more complexity, what if a mail notification is sent for each
bar modified in the collection?
thanks,
Jeff