# Author:: Nicolas Pouillard . # Copyright:: Copyright (c) 2004, 2005 TTK team. All rights reserved. # License:: LGPL # $Id: dispatch.rb 567 2005-04-13 08:00:06Z polrop $ require 'io/ext' require 'io/filters' class IO class Dispatch include IO::ImplIndent def initialize(*filters) @of = filters end def method_missing(*args) @of.each { |of| of.send(*args) } end def <<(arg) @of.each { |of| of << arg } self end end end