Method: Inspec::Runner#render_output
- Defined in:
- lib/inspec/runner.rb
#render_output(run_data) ⇒ Object
107 108 109 110 111 112 113 |
# File 'lib/inspec/runner.rb', line 107 def render_output(run_data) return if @conf['reporter'].nil? @conf['reporter'].each do |reporter| Inspec::Reporters.render(reporter, run_data) end end |