class Bootsnap::LoadPathCache::Store

def load_data

def load_data
  @data = begin
    MessagePack.load(Snappy.inflate(File.binread(@store_path)))
  rescue Errno::ENOENT, Snappy::Error
    {}
  end
end