Skip to content

Commit 9ad59f7

Browse files
Merge #7213
7213: Replace `bundler_2:install` task with `bundler_3:install` r=deivid-rodriguez a=deivid-rodriguez ### What was the end-user problem that led to this PR? The problem was that the `bundler_2:install` task is no longer meaningful. ### What was your diagnosis of the problem? My diagnosis was that master points to 2.x now, so this task is useless. ### What is your fix for the problem, implemented in this PR? My fix is move it to `bundler_3:install`. ### Why did you choose this fix out of the possible options? I chose this fix because it keeps the shortcut, but for a useful future version. Co-authored-by: David Rodríguez <[email protected]>
2 parents 6c3d7b1 + 53c3746 commit 9ad59f7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

bundler/task/bundler_2.rake renamed to bundler/task/bundler_3.rake

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# frozen_string_literal: true
22

3-
namespace :bundler_2 do
3+
namespace :bundler_3 do
44
task :install do
5-
ENV["BUNDLER_SPEC_SUB_VERSION"] = "2.0.0.dev"
5+
ENV["BUNDLER_SPEC_SUB_VERSION"] = "3.0.0.dev"
66
Rake::Task["override_version"].invoke
77
Rake::Task["install"].invoke
88
sh("git", "checkout", "--", "lib/bundler/version.rb")

0 commit comments

Comments
 (0)