Class: Nanoc::Extra::Checking::Issue Private
- Inherits:
-
Object
- Object
- Nanoc::Extra::Checking::Issue
- Defined in:
- lib/nanoc/extra/checking/issue.rb
This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.
Instance Attribute Summary collapse
- #check_class ⇒ Object readonly private
- #description ⇒ Object readonly private
- #subject ⇒ Object readonly private
Instance Method Summary collapse
-
#initialize(desc, subject, check_class) ⇒ Issue
constructor
private
A new instance of Issue.
Constructor Details
#initialize(desc, subject, check_class) ⇒ Issue
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Returns a new instance of Issue.
8 9 10 11 12 |
# File 'lib/nanoc/extra/checking/issue.rb', line 8 def initialize(desc, subject, check_class) @description = desc @subject = subject @check_class = check_class end |
Instance Attribute Details
#check_class ⇒ Object (readonly)
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
6 7 8 |
# File 'lib/nanoc/extra/checking/issue.rb', line 6 def check_class @check_class end |
#description ⇒ Object (readonly)
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
4 5 6 |
# File 'lib/nanoc/extra/checking/issue.rb', line 4 def description @description end |
#subject ⇒ Object (readonly)
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
5 6 7 |
# File 'lib/nanoc/extra/checking/issue.rb', line 5 def subject @subject end |