class Gem::Commands::UnpackCommand

def find_in_cache(filename)

def find_in_cache(filename)
  Gem.path.each do |path|
    this_path = File.join(path, "cache", filename)
    return this_path if File.exist? this_path
  end
  nil
end