From 84a79be1fc47f8ee5088db16aaa12d64b9152c72 Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Wed, 2 Jan 2019 12:01:50 +0000 Subject: [PATCH] Ruby setup - switch from deprecated gem flags to new --no-document The `--no-rdoc` and `--no-ri` flags have been deprecated for a while, and with Ruby 2.6.0 they have finally been removed. So we need to use the newer `--no-document` flag instead. --- zsh/ruby.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zsh/ruby.zsh b/zsh/ruby.zsh index 6bc784b..23bd557 100755 --- a/zsh/ruby.zsh +++ b/zsh/ruby.zsh @@ -3,7 +3,7 @@ # install_ruby_global_packages () { - gem install --no-rdoc --no-ri \ + gem install --no-document \ brakeman \ bundler \ bundler-audit \