Sha256: 6002a1e7c18b383743bf21670ac8f1aae83cc9b9147e16ab44a03463a9d6742b
Contents?: true
Size: 251 Bytes
Versions: 87
Compression:
Stored size: 251 Bytes
Contents
module ActiveFedora class Checksum attr_reader :uri, :value, :algorithm def initialize(file) @uri = file.digest.first return unless @uri @algorithm, @value = @uri.path.split(":") @algorithm.upcase! end end end
Version data entries
87 entries across 87 versions & 1 rubygems