Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-docs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAchilleas Pipinellis <axil@gitlab.com>2022-12-08 16:20:02 +0300
committerAchilleas Pipinellis <axil@gitlab.com>2022-12-08 16:20:02 +0300
commitc34056c8b790a920dd58c9aa8119c4250dfeb027 (patch)
treedde34fd8540e78c54a0000176699308a179e4e7a
parent690ceeffc7204b66f6e044761ae34a2d68540df2 (diff)
Add info when a new Ruby version is installed
-rw-r--r--doc/setup.md16
1 files changed, 16 insertions, 0 deletions
diff --git a/doc/setup.md b/doc/setup.md
index 15aa2ecc..44892786 100644
--- a/doc/setup.md
+++ b/doc/setup.md
@@ -278,3 +278,19 @@ For a temporary solution, stop the GDK server before running `make view`.
```plaintext
make view
```
+
+### Missing gems when updating Ruby
+
+When a new Ruby version is added in `.tool-versions`, you can install it with:
+
+```shell
+make install-asdf-dependencies
+```
+
+After the installation completes, you must re-install the Gems. Run the
+following command in all repositories that need Ruby (for example, `gitlab`,
+`gitlab-docs`):
+
+```shell
+bundle install
+```