class SafeExec::NoOutputExecutor

Public Class Methods

new() click to toggle source
Calls superclass method SafeExec::Executor::new
# File lib/safe_exec/no_output_executor.rb, line 15
def initialize
  super
  @stdout = NullIO
  @stderr = NullIO
end