Class: R10K::Util::Subprocess::POSIX::IO Private

Inherits:
IO
  • Object
show all
Defined in:
lib/r10k/util/subprocess/posix/io.rb

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.

Instance Attribute Summary

Attributes inherited from IO

#stderr, #stdin, #stdout

Instance Method Summary collapse

Constructor Details

#initializeIO

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.

Returns a new instance of IO.



3
4
5
6
# File 'lib/r10k/util/subprocess/posix/io.rb', line 3

def initialize
  @stdout = '/dev/null'
  @stderr = '/dev/null'
end