class Bundler::CompactIndexClient::Updater::MisMatchedChecksumError
def initialize(path, server_checksum, local_checksum)
def initialize(path, server_checksum, local_checksum) @path = path @server_checksum = server_checksum @local_checksum = local_checksum end
def message
def message "The checksum of /#{@path} does not match the checksum provided by the server! Something is wrong " \ "(local checksum is #{@local_checksum.inspect}, was expecting #{@server_checksum.inspect})." end