class RenuoBinCheck::Printer
Public Instance Methods
print_error_output(result)
click to toggle source
:reek: UtilityFunction
# File lib/renuo_bin_check/printer.rb, line 9 def print_error_output(result) error_output = result.error_output error_output = result.standard_output if error_output == '' $stderr.puts error_output end
print_standard_output(results)
click to toggle source
:reek: UtilityFunction
# File lib/renuo_bin_check/printer.rb, line 4 def print_standard_output(results) results.each { |result| $stdout.puts result.standard_output } end