class Cucumber::Formatter::Message

The formatter used for --format message

def initialize(config)

def initialize(config)
  @io = ensure_io(config.out_stream, config.error_stream)
  super(config)
end

def output_envelope(envelope)

def output_envelope(envelope)
  @io.write(envelope.to_json)
  @io.write("\n")
end