Class: Nanoc::Checking::Issue Private
- Inherits:
-
Object
- Object
- Nanoc::Checking::Issue
- Defined in:
- lib/nanoc/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.
11 12 13 14 15 |
# File 'lib/nanoc/checking/issue.rb', line 11 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.
9 10 11 |
# File 'lib/nanoc/checking/issue.rb', line 9 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.
7 8 9 |
# File 'lib/nanoc/checking/issue.rb', line 7 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.
8 9 10 |
# File 'lib/nanoc/checking/issue.rb', line 8 def subject @subject end |