Extended maintenance of Ruby 1.9.3 ended on February 23, 2015. Read more
Object
re-define Thread#initialize bug #2618(ruby-core:27634)
# File win32ole/lib/win32ole.rb, line 8 def initialize(*arg, &block) if block org_initialize(*arg) { WIN32OLE.ole_initialize begin block.call(*arg) ensure WIN32OLE.ole_uninitialize end } else org_initialize(*arg) end end