Class: Cucumber::Formatter::Message
- Inherits:
-
MessageBuilder
- Object
- MessageBuilder
- Cucumber::Formatter::Message
- Includes:
- Io
- Defined in:
- lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/cucumber-8.0.0/lib/cucumber/formatter/message.rb
Overview
The formatter used for --format message
Constant Summary
Constants included from Messages::TimeConversion
Messages::TimeConversion::NANOSECONDS_PER_SECOND
Instance Method Summary collapse
-
#initialize(config) ⇒ Message
constructor
A new instance of Message.
- #output_envelope(envelope) ⇒ Object
Methods included from Io
ensure_dir, ensure_file, ensure_io, included, io?, url?
Methods inherited from MessageBuilder
Methods included from Messages::TimeConversion
#duration_to_seconds, #seconds_to_duration, #time_to_timestamp, #timestamp_to_time
Constructor Details
#initialize(config) ⇒ Message
Returns a new instance of Message.
12 13 14 15 |
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/cucumber-8.0.0/lib/cucumber/formatter/message.rb', line 12 def initialize(config) @io = ensure_io(config.out_stream, config.error_stream) super(config) end |
Instance Method Details
#output_envelope(envelope) ⇒ Object
17 18 19 20 |
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/cucumber-8.0.0/lib/cucumber/formatter/message.rb', line 17 def output_envelope(envelope) @io.write(envelope.to_json) @io.write("\n") end |