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

Version Path
Pistos-ramaze-2008.09 lib/ramaze/helper/thread.rb
Pistos-ramaze-2008.12 lib/ramaze/helper/thread.rb
Pistos-ramaze-2009.01 lib/ramaze/helper/thread.rb
Pistos-ramaze-2009.02 lib/ramaze/helper/thread.rb
Pistos-ramaze-2009.04.08 lib/ramaze/helper/thread.rb
Pistos-ramaze-2009.06.12 lib/ramaze/helper/thread.rb
manveru-ramaze-2008.08 lib/ramaze/helper/thread.rb
manveru-ramaze-2008.09 lib/ramaze/helper/thread.rb
manveru-ramaze-2008.10 lib/ramaze/helper/thread.rb
manveru-ramaze-2008.12 lib/ramaze/helper/thread.rb
manveru-ramaze-2009.01 lib/ramaze/helper/thread.rb
manveru-ramaze-2009.04.01 lib/ramaze/helper/thread.rb
manveru-ramaze-2009.04.08 lib/ramaze/helper/thread.rb
manveru-ramaze-2009.04.18 lib/ramaze/helper/thread.rb
manveru-ramaze-2009.04.22 lib/ramaze/helper/thread.rb
manveru-ramaze-2009.04 lib/ramaze/helper/thread.rb
manveru-ramaze-2009.05.08 lib/ramaze/helper/thread.rb
manveru-ramaze-2009.05 lib/ramaze/helper/thread.rb
manveru-ramaze-2009.06.04 lib/ramaze/helper/thread.rb
manveru-ramaze-2009.06.12 lib/ramaze/helper/thread.rb