Class: EagerEye::Reporters::Base
- Inherits:
-
Object
- Object
- EagerEye::Reporters::Base
- Defined in:
- lib/eager_eye/reporters/base.rb
Instance Attribute Summary collapse
-
#issues ⇒ Object
readonly
Returns the value of attribute issues.
Instance Method Summary collapse
-
#initialize(issues) ⇒ Base
constructor
A new instance of Base.
- #report ⇒ Object
Constructor Details
#initialize(issues) ⇒ Base
Returns a new instance of Base.
8 9 10 |
# File 'lib/eager_eye/reporters/base.rb', line 8 def initialize(issues) @issues = issues end |
Instance Attribute Details
#issues ⇒ Object (readonly)
Returns the value of attribute issues.
6 7 8 |
# File 'lib/eager_eye/reporters/base.rb', line 6 def issues @issues end |
Instance Method Details
#report ⇒ Object
12 13 14 |
# File 'lib/eager_eye/reporters/base.rb', line 12 def report raise NotImplementedError, "Subclasses must implement #report" end |