class Bootsnap::LoadPathCache::Path

def stability

def stability
  @stability ||= begin
    if Gem.path.detect { |p| path.start_with?(p.to_s) }
      STABLE
    elsif path.start_with?(RUBY_PREFIX) && !path.start_with?(SITE_DIR)
      STABLE
    else
      VOLATILE
    end
  end
end