Replace the remaning usage of gem --no-ri and --no-rdoc

This change replaces the remaining usage of --no-iro and --no-rdoc
with --no-document, because these two options are no longer valid
in the later version especially available in Ubuntu Focal.

[1] ddb24d6a06

Change-Id: I42d7e2b5f3ab8ae9e020fa9f1ec6e355431e4814
This commit is contained in:
Takashi Kajinami 2021-03-16 20:43:47 +09:00
parent 0b5f352395
commit b033cd2f92

View File

@ -19,7 +19,7 @@
export GEM_HOME=`pwd`/.bundled_gems
export GEM_BIN_DIR=$GEM_HOME/bin
ruby <<EOF
cmd = 'gem install bundler --no-rdoc --no-ri --verbose --no-user-install --bindir=${GEM_BIN_DIR}'
cmd = 'gem install bundler --no-document --verbose --no-user-install --bindir=${GEM_BIN_DIR}'
cmd += ' -v 2.2.11'
system(cmd)
EOF