Sha256: eebc3904033fd369722aa8bc8cb5b58a0639a7ff0686a9e97bfddbb14c3a5ade
Contents?: true
Size: 496 Bytes
Versions: 17
Compression:
Stored size: 496 Bytes
Contents
require 'cucumber/formatter/gherkin_formatter_adapter' require 'cucumber/formatter/io' require 'gherkin/formatter/argument' require 'gherkin/formatter/json_formatter' module Cucumber module Formatter # The formatter used for <tt>--format json</tt> class Json < GherkinFormatterAdapter include Io def initialize(runtime, io, options) @io = ensure_io(io, "json") super(Gherkin::Formatter::JSONFormatter.new(@io), false, options) end end end end
Version data entries
17 entries across 16 versions & 2 rubygems