Sha256: 6f61c510c1a4df93ed058a466803fbcc234e4af8c1e3d1e7e3c899534737ec48
Contents?: true
Size: 885 Bytes
Versions: 9
Compression:
Stored size: 885 Bytes
Contents
require "digest/sha1" require "action_dispatch/http/mime_type" class Propshaft::Asset attr_reader :path, :logical_path def initialize(path, logical_path:) @path, @logical_path = path, Pathname.new(logical_path) end def content File.binread(path) end def content_type Mime::Type.lookup_by_extension(logical_path.extname.from(1)) end def length content.size end def digest @digest ||= Digest::SHA1.hexdigest(content) end def digested_path if already_digested? logical_path else logical_path.sub(/\.(\w+)$/) { |ext| "-#{digest}#{ext}" } end end def fresh?(digest) self.digest == digest || already_digested? end def ==(other_asset) logical_path.hash == other_asset.logical_path.hash end private def already_digested? logical_path.to_s =~ /-([0-9a-f]{7,128})\.digested/ end end
Version data entries
9 entries across 9 versions & 1 rubygems