Class: Bootprint::Security::Auditor::Issue
- Inherits:
-
Struct
- Object
- Struct
- Bootprint::Security::Auditor::Issue
- Defined in:
- lib/bootprint/security/auditor.rb
Instance Attribute Summary collapse
-
#kind ⇒ Object
Returns the value of attribute kind.
-
#message ⇒ Object
Returns the value of attribute message.
-
#path ⇒ Object
Returns the value of attribute path.
Instance Method Summary collapse
Instance Attribute Details
#kind ⇒ Object
Returns the value of attribute kind
6 7 8 |
# File 'lib/bootprint/security/auditor.rb', line 6 def kind @kind end |
#message ⇒ Object
Returns the value of attribute message
6 7 8 |
# File 'lib/bootprint/security/auditor.rb', line 6 def @message end |
#path ⇒ Object
Returns the value of attribute path
6 7 8 |
# File 'lib/bootprint/security/auditor.rb', line 6 def path @path end |
Instance Method Details
#to_h ⇒ Object
7 |
# File 'lib/bootprint/security/auditor.rb', line 7 def to_h = { "path" => path, "kind" => kind, "message" => } |