From e7786de8b333930fe305e82bf5bdc7b85dc1a3a5 Mon Sep 17 00:00:00 2001 From: Mike MacDonald Date: Wed, 11 Sep 2019 14:11:51 -0400 Subject: require `rubygems`, not `ubygems` The latter does not work on Ruby 2.6.3. --- man/bundle-exec.1 | 2 +- man/bundle-exec.1.txt | 2 +- man/bundle-exec.ronn | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/man/bundle-exec.1 b/man/bundle-exec.1 index 047b5f3c12..8d6b2fb085 100644 --- a/man/bundle-exec.1 +++ b/man/bundle-exec.1 @@ -155,7 +155,7 @@ You can find a list of all the gems containing gem plugins by running . .nf -ruby \-rubygems \-e "puts Gem\.find_files(\'rubygems_plugin\.rb\')" +ruby \-rrubygems \-e "puts Gem\.find_files(\'rubygems_plugin\.rb\')" . .fi . diff --git a/man/bundle-exec.1.txt b/man/bundle-exec.1.txt index 1e9ffba98a..c15b321265 100644 --- a/man/bundle-exec.1.txt +++ b/man/bundle-exec.1.txt @@ -165,7 +165,7 @@ RUBYGEMS PLUGINS - ruby -rubygems -e "puts Gem.find_files('rubygems_plugin.rb')" + ruby -rrubygems -e "puts Gem.find_files('rubygems_plugin.rb')" diff --git a/man/bundle-exec.ronn b/man/bundle-exec.ronn index aa680f4c5d..dec3c7cb82 100644 --- a/man/bundle-exec.ronn +++ b/man/bundle-exec.ronn @@ -145,7 +145,7 @@ their plugins. You can find a list of all the gems containing gem plugins by running - ruby -rubygems -e "puts Gem.find_files('rubygems_plugin.rb')" + ruby -rrubygems -e "puts Gem.find_files('rubygems_plugin.rb')" At the very least, you should remove all but the newest version of each gem plugin, and also remove all gem plugins -- cgit v1.2.1