Sha256: b585d7b784c3d41c32e6b20e6e9250d9a426f0e21dd61a5926b399b3df7d0b35
Contents?: true
Size: 487 Bytes
Versions: 21
Compression:
Stored size: 487 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) end end end end
Version data entries
21 entries across 21 versions & 2 rubygems