class Bundler::Checksum::Source

def to_s

rake (10.3.2) sha256=abc123 from #{to_s}
phrased so that the usual string format is grammatically correct
def to_s
  case type
  when :lock
    "the lockfile CHECKSUMS at #{location}"
  when :gem
    "the gem at #{location}"
  when :api
    "the API at #{location}"
  else
    "#{location} (#{type})"
  end
end