[rubygems/rubygems] Fix `bundle plugin install --help` showing `bundle install`'s help

https://github.com/rubygems/rubygems/commit/b7b7d16aa8
This commit is contained in:
David Rodríguez 2021-07-13 13:00:02 +02:00 коммит произвёл Hiroshi SHIBATA
Родитель c5f78ade5a
Коммит 71d3c9bbfa
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: F9CF13417264FAC2
2 изменённых файлов: 7 добавлений и 0 удалений

Просмотреть файл

@ -14,6 +14,7 @@ module Bundler
COMMAND_ALIASES = {
"check" => "c",
"install" => "i",
"plugin" => "",
"list" => "ls",
"exec" => ["e", "ex", "exe"],
"cache" => ["package", "pack"],

Просмотреть файл

@ -29,6 +29,12 @@ RSpec.describe "bundler plugin install" do
plugin_should_be_installed("foo")
end
it "shows help when --help flag is given" do
bundle "plugin install --help"
expect(out).to include("bundle plugin install PLUGINS # Install the plugin from the source")
end
context "plugin is already installed" do
before do
bundle "plugin install foo --source #{file_uri_for(gem_repo2)}"