From: ged@... Date: 2008-08-20T09:37:56+09:00 Subject: [ANN] io-reactor 1.0.4 Version 1.0.4 of IO-Reactor has been released. IO-Reactor is a pure-Ruby implementation of an asynchronous multiplexed IO Reactor which is based on the Reactor design pattern found in _Pattern-Oriented Software Architecture, Volume 2: Patterns for Concurrent and Networked Objects_. It allows a single thread to demultiplex and dispatch events from one or more IO objects to the appropriate handler. == Project Page http://deveiate.org/projects/IO-Reactor/ == Installation Via gems: $ sudo gem install io-reactor or from source: $ wget http://deveiate.org/code/io-reactor-1.0.4.tar.gz $ tar -xzvf io-reactor-1.0.4.tar.gz $ cd io-reactor-1.0.4 $ sudo rake install == Changes * Fixed bug when unregistering an IO from its error-handler (http://deveiate.org/projects/IO-Reactor/ticket/3). Thanks to epirogov at tucows{dot}com for reporting this.