Method: Bolt::Node::Output#to_h

Defined in:
lib/bolt/node/output.rb

#to_hObject



19
20
21
22
23
24
25
26
# File 'lib/bolt/node/output.rb', line 19

def to_h
  {
    'stdout'        => @stdout.string,
    'stderr'        => @stderr.string,
    'merged_output' => @merged_output.string,
    'exit_code'     => @exit_code
  }
end