From 4cd1719a68325af1e25def2fd0adb67b4c4cb83c Mon Sep 17 00:00:00 2001 From: "Matthew M. Emma" Date: Fri, 7 Aug 2026 11:19:48 -0700 Subject: [PATCH] Add jekyll-include-cache so the docs site builds The just-the-docs remote theme requires it, and a remote theme's own plugin list is not enough: the gem has to be present in the site's Gemfile too. Without it the Pages build fails on a MissingDependency error before rendering anything. Co-Authored-By: Claude Opus 5 --- docs/Gemfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/Gemfile b/docs/Gemfile index bdb70f3..a7b70a8 100644 --- a/docs/Gemfile +++ b/docs/Gemfile @@ -6,6 +6,8 @@ group :jekyll_plugins do gem "jekyll-remote-theme", "~> 0.4" gem "jekyll-seo-tag", "~> 2.8" gem "jekyll-sitemap", "~> 1.4" + # Required by the just-the-docs remote theme. + gem "jekyll-include-cache", "~> 0.2" end # Required on Ruby 3.x, where these left the standard library.