Class: Hone::Analyzer::Result

Inherits:
Data
  • Object
show all
Defined in:
lib/hone/analyzer.rb

Overview

Result of analysis containing findings, output, and exit code

Instance Attribute Summary collapse

Instance Attribute Details

#exit_codeObject (readonly)

Returns the value of attribute exit_code

Returns:

  • (Object)

    the current value of exit_code



25
26
27
# File 'lib/hone/analyzer.rb', line 25

def exit_code
  @exit_code
end

#findingsObject (readonly)

Returns the value of attribute findings

Returns:

  • (Object)

    the current value of findings



25
26
27
# File 'lib/hone/analyzer.rb', line 25

def findings
  @findings
end

#outputObject (readonly)

Returns the value of attribute output

Returns:

  • (Object)

    the current value of output



25
26
27
# File 'lib/hone/analyzer.rb', line 25

def output
  @output
end