class Bootsnap::LoadPathCache::Path

def stability

def stability
  @stability ||= begin
    if Gem.path.detect { |p| expanded_path.start_with?(p.to_s) }
      STABLE
    elsif expanded_path.start_with?(Bundler.bundle_path.to_s)
      STABLE
    elsif expanded_path.start_with?(RUBY_LIBDIR) && !expanded_path.start_with?(RUBY_SITEDIR)
      STABLE
    else
      VOLATILE
    end
  end
end