I've got a situation where I need to 'do_this' after 'foo' has been created successfully and 'do_that' when 'do_this' has been executed without errors, like so:
class Foo < ActiveRecord::Base
around_create do |foo, block|
transaction do
block.call # invokes foo.save
do_this!
do_that!
end
end
protected
def do_this!
raise ActiveRecord::Rollback if something_fails
end
def do_that!
raise ActiveRecord::Rollback if something_else_fails
end
end
And the entire transaction should be rolled back in case one of them fails.
The problem however is, that 'foo' is always persisted even if 'do_this' or 'do_that' fails. What gives?
