Module: TransactionalLock::ActiveRecordPatches::ActiveRecordBasePatches

Defined in:
lib/transactional_lock/active_record_patches.rb

Instance Method Summary collapse

Instance Method Details

#transaction(*args) ⇒ Object



10
11
12
13
14
# File 'lib/transactional_lock/active_record_patches.rb', line 10

def transaction(*args)
  TransactionalLock::TransactionWrapper.new.wrap do
    super
  end
end