class Sprockets::Asset

def etag

Experimental RBS support (using type sampling data from the type_fusion project).

def etag: () -> String

This signature was generated using 1 sample from 1 application.

Pubic: ETag String of Asset.
def etag
  version = environment_version
  if version && version != ""
    DigestUtils.hexdigest(version + digest)
  else
    DigestUtils.pack_hexdigest(digest)
  end
end