Class: Capsium::Package::Security::UncheckedFile
- Inherits:
-
Data
- Object
- Data
- Capsium::Package::Security::UncheckedFile
- Defined in:
- sig/capsium/package/security.rbs,
lib/capsium/package/security.rb
Overview
A file on disk not covered by any checksum.
Instance Attribute Summary collapse
-
#path ⇒ Object
readonly
Returns the value of attribute path.
Instance Method Summary collapse
-
#initialize ⇒ UncheckedFile
constructor
A new instance of UncheckedFile.
- #message ⇒ String
Constructor Details
#initialize ⇒ UncheckedFile
Returns a new instance of UncheckedFile.
35 |
# File 'sig/capsium/package/security.rbs', line 35
def initialize: (path: String path) -> void
|
Instance Attribute Details
#path ⇒ Object (readonly)
Returns the value of attribute path
28 29 30 |
# File 'lib/capsium/package/security.rb', line 28 def path @path end |
Instance Method Details
#message ⇒ String
29 30 31 |
# File 'lib/capsium/package/security.rb', line 29 def "file not covered by checksums: #{path}" end |