Class: Dockerspec::Builder::Logger::Silent
- Inherits:
-
Object
- Object
- Dockerspec::Builder::Logger::Silent
- Defined in:
- lib/dockerspec/builder/logger/silent.rb
Overview
A Dockerspec::Builder logger that outputs nothing.
Instance Method Summary collapse
-
#initialize(*_args) ⇒ Object
constructor
private
Creates a Silent logger instance.
-
#print_chunk(_chunk) ⇒ Object
private
Prints nothing.
Constructor Details
#initialize(*_args) ⇒ Object
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.
Creates a Silent logger instance.
36 |
# File 'lib/dockerspec/builder/logger/silent.rb', line 36 def initialize(*_args); end |
Instance Method Details
#print_chunk(_chunk) ⇒ Object
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.
Prints nothing.
47 |
# File 'lib/dockerspec/builder/logger/silent.rb', line 47 def print_chunk(_chunk); end |