From bcaf878b65d6349da9e53ad9243796e72797c0db Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miguel=20Brand=C3=A3o?= Date: Thu, 22 Jul 2021 18:46:12 +0100 Subject: [PATCH] Add 'webrick' warning note to "Quickstart" Docs (#8727) Merge pull request 8727 --- docs/_docs/index.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/_docs/index.md b/docs/_docs/index.md index 07dfeb11..af97b79c 100644 --- a/docs/_docs/index.md +++ b/docs/_docs/index.md @@ -41,6 +41,9 @@ bundle exec jekyll serve ``` 6. Browse to [http://localhost:4000](http://localhost:4000){:target="_blank"} +{: .note .warning} +If you are using Ruby version 3.0.0 or higher, step 5 [may fail](https://github.com/github/pages-gem/issues/752). You may fix it by adding `webrick` to your dependencies: `bundle add webrick` + {: .note .info} Pass the `--livereload` option to `serve` to automatically refresh the page with each change you make to the source files: `bundle exec jekyll serve --livereload`