method

checksums

ruby latest stable - Class: Bundler::CompactIndexClient::Cache

Method not available on this version

This method is only available on newer versions. The first available version (v2_6_3) is shown here.

checksums()
public

No documentation available.

# File lib/bundler/compact_index_client/cache.rb, line 50
      def checksums
        checksums = {}

        lines(versions_path).each do |line|
          name, _, checksum = line.split(" ", 3)
          checksums[name] = checksum
        end

        checksums
      end