Class: Capsium::Package::Bundle::Entry
- Inherits:
-
Data
- Object
- Data
- Capsium::Package::Bundle::Entry
- Defined in:
- lib/capsium/package/bundle.rb,
sig/capsium/package/bundle.rbs
Overview
One bundled dependency: the absolute .cap path, its version and the SHA-256 recorded in the manifest.
Instance Attribute Summary collapse
-
#file ⇒ Object
readonly
Returns the value of attribute file.
-
#sha256 ⇒ Object
readonly
Returns the value of attribute sha256.
-
#version ⇒ Object
readonly
Returns the value of attribute version.
Class Method Summary collapse
Instance Attribute Details
#file ⇒ Object (readonly)
Returns the value of attribute file
38 39 40 |
# File 'lib/capsium/package/bundle.rb', line 38 def file @file end |
#sha256 ⇒ Object (readonly)
Returns the value of attribute sha256
38 39 40 |
# File 'lib/capsium/package/bundle.rb', line 38 def sha256 @sha256 end |
#version ⇒ Object (readonly)
Returns the value of attribute version
38 39 40 |
# File 'lib/capsium/package/bundle.rb', line 38 def version @version end |
Class Method Details
.new ⇒ void
This method returns an undefined value.
15 |
# File 'sig/capsium/package/bundle.rbs', line 15
def self.new: (String file, String version, String sha256) -> void
|