module ActiveRecord::Transactions

def add_to_transaction

can be called.
Add the record to the current transaction so that the :after_rollback and :after_commit callbacks
def add_to_transaction
  if self.class.connection.add_transaction_record(self)
    remember_transaction_record_state
  end
end

def clear_transaction_record_state #:nodoc

:nodoc
Clear the new record state and id of a record.
def clear_transaction_record_state #:nodoc
  if defined?(@_start_transaction_state)
    @_start_transaction_state[:level] = (@_start_transaction_state[:level] || 0) - 1
    remove_instance_variable(:@_start_transaction_state) if @_start_transaction_state[:level] < 1
  end
end

def committed! #:nodoc:

:nodoc:
Call the after_commit callbacks
def committed! #:nodoc:
  _run_commit_callbacks
ensure
  clear_transaction_record_state
end

def destroy #:nodoc:

:nodoc:
def destroy #:nodoc:
  with_transaction_returning_status { super }
end

def remember_transaction_record_state #:nodoc

:nodoc
Save the new record state and id of a record so it can be restored later if a transaction fails.
def remember_transaction_record_state #:nodoc
  @_start_transaction_state ||= {}
  unless @_start_transaction_state.include?(:new_record)
    @_start_transaction_state[:id] = id if has_attribute?(self.class.primary_key)
    @_start_transaction_state[:new_record] = @new_record
  end
  unless @_start_transaction_state.include?(:destroyed)
    @_start_transaction_state[:destroyed] = @destroyed
  end
  @_start_transaction_state[:level] = (@_start_transaction_state[:level] || 0) + 1
end

def restore_transaction_record_state(force = false) #:nodoc

:nodoc
Restore the new record state and id of a record that was previously saved by a call to save_record_state.
def restore_transaction_record_state(force = false) #:nodoc
  if defined?(@_start_transaction_state)
    @_start_transaction_state[:level] = (@_start_transaction_state[:level] || 0) - 1
    if @_start_transaction_state[:level] < 1
      restore_state = remove_instance_variable(:@_start_transaction_state)
      if restore_state
        @attributes = @attributes.dup if @attributes.frozen?
        @new_record = restore_state[:new_record]
        @destroyed = restore_state[:destroyed]
        if restore_state[:id]
          self.id = restore_state[:id]
        else
          @attributes.delete(self.class.primary_key)
          @attributes_cache.delete(self.class.primary_key)
        end
      end
    end
  end
end

def rollback_active_record_state!

Reset id and @new_record if the transaction rolls back.
def rollback_active_record_state!
  remember_transaction_record_state
  yield
rescue Exception
  restore_transaction_record_state
  raise
ensure
  clear_transaction_record_state
end

def rolledback!(force_restore_state = false) #:nodoc:

:nodoc:
state should be rolled back to the beginning or just to the last savepoint.
Call the after rollback callbacks. The restore_state argument indicates if the record
def rolledback!(force_restore_state = false) #:nodoc:
  _run_rollback_callbacks
ensure
  restore_transaction_record_state(force_restore_state)
end

def save(*) #:nodoc:

:nodoc:
def save(*) #:nodoc:
  rollback_active_record_state! do
    with_transaction_returning_status { super }
  end
end

def save!(*) #:nodoc:

:nodoc:
def save!(*) #:nodoc:
  with_transaction_returning_status { super }
end

def transaction(&block)

See ActiveRecord::Transactions::ClassMethods for detailed documentation.
def transaction(&block)
  self.class.transaction(&block)
end

def transaction_include_action?(action) #:nodoc

:nodoc
Determine if a transaction included an action for :create, :update, or :destroy. Used in filtering callbacks.
def transaction_include_action?(action) #:nodoc
  case action
  when :create
    transaction_record_state(:new_record)
  when :destroy
    destroyed?
  when :update
    !(transaction_record_state(:new_record) || destroyed?)
  end
end

def transaction_record_state(state) #:nodoc

:nodoc
Determine if a record was created or destroyed in a transaction. State should be one of :new_record or :destroyed.
def transaction_record_state(state) #:nodoc
  @_start_transaction_state[state] if defined?(@_start_transaction_state)
end

def with_transaction_returning_status

instance.
This method is available within the context of an ActiveRecord::Base

a ROLLBACK is issued. In any case the status flag is returned.
status flag. If the status is true the transaction is committed, otherwise
Executes +method+ within a transaction and captures its return value as a
def with_transaction_returning_status
  status = nil
  self.class.transaction do
    add_to_transaction
    status = yield
    raise ActiveRecord::Rollback unless status
  end
  status
end