class Bootsnap::LoadPathCache::Store

def load_data

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