Skip to content

Commit

Permalink
Merge #7213
Browse files Browse the repository at this point in the history
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 <deivid.rodriguez@riseup.net>
  • Loading branch information
bundlerbot and deivid-rodriguez committed Jun 20, 2019
2 parents 6c3d7b1 + 53c3746 commit 9ad59f7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bundler/task/bundler_2.rake → bundler/task/bundler_3.rake
@@ -1,8 +1,8 @@
# frozen_string_literal: true

namespace :bundler_2 do
namespace :bundler_3 do
task :install do
ENV["BUNDLER_SPEC_SUB_VERSION"] = "2.0.0.dev"
ENV["BUNDLER_SPEC_SUB_VERSION"] = "3.0.0.dev"
Rake::Task["override_version"].invoke
Rake::Task["install"].invoke
sh("git", "checkout", "--", "lib/bundler/version.rb")
Expand Down

0 comments on commit 9ad59f7

Please sign in to comment.