class Cucumber::Formatter::ColorIO

:nodoc:
Adapter to make #puts/#print/#flush work with win32console

def <<(output)

Ensure using << still gets colours in win32console
def <<(output)
  print(output)
  self
end

def initialize(kernel, stdout)

def initialize(kernel, stdout)
  @kernel = kernel
  @stdout = stdout
end