From 74ba1348c4b7daa25925bd7701acb97b47b1e6be Mon Sep 17 00:00:00 2001 From: Andreas Perhab Date: Tue, 12 Oct 2021 11:02:12 +0200 Subject: [PATCH] [FIX] doodbalib: use --no-document instead of deprecated args for gem install --- lib/doodbalib/installer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/doodbalib/installer.py b/lib/doodbalib/installer.py index cf305b22..2f926cc8 100644 --- a/lib/doodbalib/installer.py +++ b/lib/doodbalib/installer.py @@ -88,7 +88,7 @@ def install(self): class GemInstaller(Installer): _cleanup_commands = ["rm -Rf ~/.gem /var/lib/gems/*/cache/"] - _install_command = ["gem", "install", "--no-rdoc", "--no-ri", "--no-update-sources"] + _install_command = ["gem", "install", "--no-document", "--no-update-sources"] class NpmInstaller(Installer):