class Cucumber::Formatter::Gpretty

The formatter used for --format gpretty

def after_feature(feature)

def after_feature(feature)
  super
  @io.puts
end

def initialize(runtime, io, options)

def initialize(runtime, io, options)
  @io = ensure_io(io, "json")
  super(Gherkin::Formatter::PrettyFormatter.new(@io, false), true)
end