Sha256: 9c7216e269cf2cee50e3793e3e1537ccba4e253cf548da6d4d6a31c82dd345d6
Contents?: true
Size: 472 Bytes
Versions: 25
Compression:
Stored size: 472 Bytes
Contents
# frozen_string_literal: true module Hyrax class RepositoryFixityCheckService # This is a service that folks can use in their own rake tasks, # etc. It is not otherwise called or relied upon in Hyrax. # @see https://github.com/samvera/hyrax/wiki/Hyrax-Management-Guide#fixity-checking def self.fixity_check_everything ::FileSet.find_each do |file_set| Hyrax::FileSetFixityCheckService.new(file_set).fixity_check end end end end
Version data entries
25 entries across 25 versions & 1 rubygems