Class: Cliqr::Command::Output::StandardOutputStream Private

Inherits:
Object
  • Object
show all
Defined in:
lib/cliqr/command/output/standard_output_stream.rb

Overview

This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.

Standard output stream writer

Instance Method Summary collapse

Instance Method Details

#write(message) ⇒ Nothing

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Write a message directly to the output stream

Returns:

  • (Nothing)


14
15
16
# File 'lib/cliqr/command/output/standard_output_stream.rb', line 14

def write(message)
  puts message
end