class DockerToolkit::ChildProcess::AbstractIO
Attributes
stderr[R]
stdin[R]
stdout[R]
Public Instance Methods
_stdin=(io)
click to toggle source
@api private
# File lib/docker_toolkit/childprocess/abstract_io.rb, line 25 def _stdin=(io) check_type io @stdin = io end
inherit!()
click to toggle source
# File lib/docker_toolkit/childprocess/abstract_io.rb, line 6 def inherit! @stdout = STDOUT @stderr = STDERR end
stderr=(io)
click to toggle source
# File lib/docker_toolkit/childprocess/abstract_io.rb, line 11 def stderr=(io) check_type io @stderr = io end
stdout=(io)
click to toggle source
# File lib/docker_toolkit/childprocess/abstract_io.rb, line 16 def stdout=(io) check_type io @stdout = io end
Private Instance Methods
check_type(io)
click to toggle source
# File lib/docker_toolkit/childprocess/abstract_io.rb, line 32 def check_type(io) raise SubclassResponsibility, "check_type" end