Class: Snoot::AnalyseRun::Result
- Inherits:
-
Data
- Object
- Data
- Snoot::AnalyseRun::Result
- Defined in:
- lib/snoot/analyse_run/result.rb
Overview
Result is the value returned by AnalyseRun.invoke: the terminal Run, the audit events emitted along the way, and the smells the orchestration produced (forwarded to RenderReport, which filters by selected smell_type when building the per-file Instances list). smells is empty when analysis failed (no Sources were produced).
Instance Attribute Summary collapse
-
#events ⇒ Object
readonly
Returns the value of attribute events.
-
#run ⇒ Object
readonly
Returns the value of attribute run.
-
#smells ⇒ Object
readonly
Returns the value of attribute smells.
Instance Attribute Details
#events ⇒ Object (readonly)
Returns the value of attribute events
10 11 12 |
# File 'lib/snoot/analyse_run/result.rb', line 10 def events @events end |
#run ⇒ Object (readonly)
Returns the value of attribute run
10 11 12 |
# File 'lib/snoot/analyse_run/result.rb', line 10 def run @run end |
#smells ⇒ Object (readonly)
Returns the value of attribute smells
10 11 12 |
# File 'lib/snoot/analyse_run/result.rb', line 10 def smells @smells end |