Class: LintFu::Report
- Inherits:
-
Object
- Object
- LintFu::Report
- Defined in:
- lib/lint_fu/report.rb
Direct Known Subclasses
Instance Attribute Summary collapse
-
#scan ⇒ Object
readonly
Returns the value of attribute scan.
-
#scm ⇒ Object
readonly
Returns the value of attribute scm.
Instance Method Summary collapse
- #generate(output_stream) ⇒ Object
-
#initialize(scan, scm, included_issues) ⇒ Report
constructor
A new instance of Report.
Constructor Details
#initialize(scan, scm, included_issues) ⇒ Report
Returns a new instance of Report.
6 7 8 9 10 |
# File 'lib/lint_fu/report.rb', line 6 def initialize(scan, scm, included_issues) @scan = scan @scm = scm @issues = included_issues end |
Instance Attribute Details
#scan ⇒ Object (readonly)
Returns the value of attribute scan.
4 5 6 |
# File 'lib/lint_fu/report.rb', line 4 def scan @scan end |
#scm ⇒ Object (readonly)
Returns the value of attribute scm.
4 5 6 |
# File 'lib/lint_fu/report.rb', line 4 def scm @scm end |
Instance Method Details
#generate(output_stream) ⇒ Object
12 13 14 |
# File 'lib/lint_fu/report.rb', line 12 def generate(output_stream) raise NotImplemented end |