Class: Mago::Report
- Inherits:
-
Object
- Object
- Mago::Report
- Defined in:
- lib/mago/report.rb
Overview
Work report built by Detector.
Instance Attribute Summary collapse
-
#errors ⇒ Object
readonly
Returns the value of attribute errors.
-
#files ⇒ Object
readonly
Returns the value of attribute files.
Instance Method Summary collapse
-
#initialize ⇒ Report
constructor
A new instance of Report.
Constructor Details
#initialize ⇒ Report
Returns a new instance of Report.
10 11 12 13 |
# File 'lib/mago/report.rb', line 10 def initialize @files = [] @errors = [] end |
Instance Attribute Details
#errors ⇒ Object (readonly)
Returns the value of attribute errors.
8 9 10 |
# File 'lib/mago/report.rb', line 8 def errors @errors end |
#files ⇒ Object (readonly)
Returns the value of attribute files.
5 6 7 |
# File 'lib/mago/report.rb', line 5 def files @files end |