From 56ac1b0e1435a425eb7451e10c0606a009d9113a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Rodr=C3=ADguez?= Date: Thu, 23 Nov 2023 23:04:44 +0100 Subject: [rubygems/rubygems] Fix advice in `bundle install --system` deprecation https://github.com/rubygems/rubygems/commit/59a66e3560 --- lib/bundler/cli.rb | 4 +++- spec/bundler/other/major_deprecation_spec.rb | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/lib/bundler/cli.rb b/lib/bundler/cli.rb index 8099b74ba1..1f7afe72d8 100644 --- a/lib/bundler/cli.rb +++ b/lib/bundler/cli.rb @@ -250,10 +250,12 @@ module Bundler def install SharedHelpers.major_deprecation(2, "The `--force` option has been renamed to `--redownload`") if ARGV.include?("--force") - %w[clean deployment frozen no-prune path shebang system without with].each do |option| + %w[clean deployment frozen no-prune path shebang without with].each do |option| remembered_flag_deprecation(option) end + print_remembered_flag_deprecation("--system", "path.system", "true") if ARGV.include?("--system") + remembered_negative_flag_deprecation("no-deployment") require_relative "cli/install" diff --git a/spec/bundler/other/major_deprecation_spec.rb b/spec/bundler/other/major_deprecation_spec.rb index 2d01b64537..7cc1926253 100644 --- a/spec/bundler/other/major_deprecation_spec.rb +++ b/spec/bundler/other/major_deprecation_spec.rb @@ -377,7 +377,7 @@ RSpec.describe "major deprecations" do "no-prune" => ["no_prune", "true"], "path" => ["path", "'vendor/bundle'"], "shebang" => ["shebang", "'ruby27'"], - "system" => ["system", "true"], + "system" => ["path.system", "true"], "without" => ["without", "'development'"], "with" => ["with", "'development'"], }.each do |name, expectations| -- cgit v1.2.3