class Cucumber::Formatter::ColorIO

Adapter to make #puts/#print/#flush work with colours on Windows

def <<(output)

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

def initialize

def initialize
  @kernel = Kernel
  @stdout = STDOUT
end