From 7f80f1320655da67570987643e49589a87666770 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Kudl=C3=A1=C4=8Dek?= Date: Thu, 18 Jun 2026 13:31:00 +0200 Subject: [PATCH 1/3] Note Ruby incompability with Jekyll for GitHub Pages --- .../testing-your-github-pages-site-locally-with-jekyll.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/content/pages/setting-up-a-github-pages-site-with-jekyll/testing-your-github-pages-site-locally-with-jekyll.md b/content/pages/setting-up-a-github-pages-site-with-jekyll/testing-your-github-pages-site-locally-with-jekyll.md index c8348f410a65..c82865fe069c 100644 --- a/content/pages/setting-up-a-github-pages-site-with-jekyll/testing-your-github-pages-site-locally-with-jekyll.md +++ b/content/pages/setting-up-a-github-pages-site-with-jekyll/testing-your-github-pages-site-locally-with-jekyll.md @@ -54,6 +54,8 @@ Before you can use Jekyll to test a site, you must: > > To fix the error, try running `bundle add webrick`, then re-running `bundle exec jekyll serve`. > + > You might get other errors (related to missing gems and deprecated methods) if you've installed Ruby 3.2 or later. It is recommended to install Ruby 3.1.x or earlier instead due to compatibility issues with the `github-pages` gem. + > > * If your `_config.yml` file's `baseurl` field contains your GitHub repository's link, you can use the following command when building locally to ignore that value and serve the site on `localhost:4000/`: > > ```shell From 161be5176fc7660719e711bde123f0e5ed4c4cde Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Kudl=C3=A1=C4=8Dek?= Date: Thu, 18 Jun 2026 14:25:14 +0200 Subject: [PATCH 2/3] Correct terminology in GitHub Pages Jekyll note --- .../testing-your-github-pages-site-locally-with-jekyll.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/pages/setting-up-a-github-pages-site-with-jekyll/testing-your-github-pages-site-locally-with-jekyll.md b/content/pages/setting-up-a-github-pages-site-with-jekyll/testing-your-github-pages-site-locally-with-jekyll.md index c82865fe069c..5f4d936c5222 100644 --- a/content/pages/setting-up-a-github-pages-site-with-jekyll/testing-your-github-pages-site-locally-with-jekyll.md +++ b/content/pages/setting-up-a-github-pages-site-with-jekyll/testing-your-github-pages-site-locally-with-jekyll.md @@ -54,7 +54,7 @@ Before you can use Jekyll to test a site, you must: > > To fix the error, try running `bundle add webrick`, then re-running `bundle exec jekyll serve`. > - > You might get other errors (related to missing gems and deprecated methods) if you've installed Ruby 3.2 or later. It is recommended to install Ruby 3.1.x or earlier instead due to compatibility issues with the `github-pages` gem. + > You might get other errors (related to missing gems methods) if you've installed Ruby 3.2 or later. It is recommended to install Ruby 3.1.x or earlier instead due to compatibility issues with the `github-pages` gem. > > * If your `_config.yml` file's `baseurl` field contains your GitHub repository's link, you can use the following command when building locally to ignore that value and serve the site on `localhost:4000/`: > From b98fdaaddaea0d701f689a6d8bcdac7563c8d94b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Kudl=C3=A1=C4=8Dek?= Date: Thu, 18 Jun 2026 14:40:37 +0200 Subject: [PATCH 3/3] Fix a typo in GitHub Pages Jekyll note --- .../testing-your-github-pages-site-locally-with-jekyll.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/pages/setting-up-a-github-pages-site-with-jekyll/testing-your-github-pages-site-locally-with-jekyll.md b/content/pages/setting-up-a-github-pages-site-with-jekyll/testing-your-github-pages-site-locally-with-jekyll.md index 5f4d936c5222..28aaf0617f05 100644 --- a/content/pages/setting-up-a-github-pages-site-with-jekyll/testing-your-github-pages-site-locally-with-jekyll.md +++ b/content/pages/setting-up-a-github-pages-site-with-jekyll/testing-your-github-pages-site-locally-with-jekyll.md @@ -54,7 +54,7 @@ Before you can use Jekyll to test a site, you must: > > To fix the error, try running `bundle add webrick`, then re-running `bundle exec jekyll serve`. > - > You might get other errors (related to missing gems methods) if you've installed Ruby 3.2 or later. It is recommended to install Ruby 3.1.x or earlier instead due to compatibility issues with the `github-pages` gem. + > You might get other errors (related to missing gems and methods) if you've installed Ruby 3.2 or later. It is recommended to install Ruby 3.1.x or earlier instead due to compatibility issues with the `github-pages` gem. > > * If your `_config.yml` file's `baseurl` field contains your GitHub repository's link, you can use the following command when building locally to ignore that value and serve the site on `localhost:4000/`: >