method

checksums

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