Method: Inspec::Config#diagnose
- Defined in:
- lib/inspec/config.rb
#diagnose ⇒ Object
61 62 63 64 65 66 67 68 69 70 71 72 73 |
# File 'lib/inspec/config.rb', line 61 def diagnose return unless self[:diagnose] puts "InSpec version: #{Inspec::VERSION}" puts "Train version: #{Train::VERSION}" puts "Command line configuration:" pp @cli_opts puts "JSON configuration file:" pp @cfg_file_contents puts "Merged configuration:" pp @merged_options puts end |