ruby/spec/bundler/update/force_spec.rb
David Rodríguez 60fca1defc
Cancel --force deprecation in favor of --redownload
I realized `--redownload` is not a good name, because it does not
necessarily redownloads gems. It only forces reinstallation even if gem
is already installed.

So I believe `--force` is actually a better name and the introduction of
`--force` was a misunderstanding of what the `--force` flag did at the
time.

Let's cancel the deprecation of `--force`.

For now the `--redownload` alias is left around until we decide what to
do with it.
2025-07-17 11:10:46 +09:00

30 lines
968 B
Ruby

# frozen_string_literal: true
RSpec.describe "bundle update" do
before :each do
install_gemfile <<-G
source "https://gem.repo1"
gem "myrack"
G
end
it "re-installs installed gems with --force" do
myrack_lib = default_bundle_path("gems/myrack-1.0.0/lib/myrack.rb")
myrack_lib.open("w") {|f| f.write("blah blah blah") }
bundle :update, force: true
expect(out).to include "Installing myrack 1.0.0"
expect(myrack_lib.open(&:read)).to eq("MYRACK = '1.0.0'\n")
expect(the_bundle).to include_gems "myrack 1.0.0"
end
it "re-installs installed gems with --redownload" do
myrack_lib = default_bundle_path("gems/myrack-1.0.0/lib/myrack.rb")
myrack_lib.open("w") {|f| f.write("blah blah blah") }
bundle :update, redownload: true
expect(out).to include "Installing myrack 1.0.0"
expect(myrack_lib.open(&:read)).to eq("MYRACK = '1.0.0'\n")
expect(the_bundle).to include_gems "myrack 1.0.0"
end
end