Sha256: e90eb61efcb0155f6b0a58026b1e3a6ad19464a3951ab3efe0811bb45471d7fc
Contents?: true
Size: 405 Bytes
Versions: 42
Compression:
Stored size: 405 Bytes
Contents
# Copyright (c) 2008 Michael Fellinger m.fellinger@gmail.com # All files in this distribution are subject to the terms of the Ruby license. module Ramaze module Helper::Thread def thread &block parent_thread = Thread.current Thread.new do begin block.call rescue Exception => e parent_thread.raise(e) end end end end end
Version data entries
42 entries across 42 versions & 5 rubygems