module Gemmy::Patches::ThreadPatch::ClassMethods::Included

Public Class Methods

included(base) click to toggle source

Ensure that threads bubble up their errors

# File lib/gemmy/patches/thread_patch.rb, line 12
def self.included(base)
  Thread.abort_on_exception = true
end