Class: Inspec::Reporters::JsonAutomate

Inherits:
Json
  • Object
show all
Defined in:
lib/inspec/reporters/json_automate.rb

Direct Known Subclasses

Automate

Instance Attribute Summary

Attributes inherited from Base

#run_data

Instance Method Summary collapse

Methods inherited from Base

#output, #rendered_output

Constructor Details

#initialize(config) ⇒ JsonAutomate

Returns a new instance of JsonAutomate.



7
8
9
10
# File 'lib/inspec/reporters/json_automate.rb', line 7

def initialize(config)
  super(config)
  @profiles = []
end

Instance Method Details

#renderObject



12
13
14
# File 'lib/inspec/reporters/json_automate.rb', line 12

def render
  output(report.to_json, false)
end

#reportObject



16
17
18
19
20
21
22
23
24
25
26
27
28
# File 'lib/inspec/reporters/json_automate.rb', line 16

def report
  # grab profiles from the json parent class
  @profiles = profiles

  {
    platform: platform,
    profiles: merge_profiles,
    statistics: {
      duration: run_data[:statistics][:duration],
    },
    version: run_data[:version],
  }
end