class Propshaft::Manifest::ManifestEntry
Represents a single entry in the asset manifest.
Each entry contains information about an asset including its logical path (the original path), digested path (the path with content hash), and optional integrity hash for security verification.
Attributes
Public Instance Methods
Source
# File lib/propshaft/manifest.rb, line 31 def to_h { digested_path: digested_path, integrity: integrity} end
Converts the manifest entry to a hash representation.
Returns a hash containing the digested_path and integrity keys.