summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBundlerbot <bot@bundler.io>2019-06-20 19:40:30 +0000
committerBundlerbot <bot@bundler.io>2019-06-20 19:40:30 +0000
commit7bc8aa06783b0d47330e294b48f656df46643004 (patch)
tree550e170b579d9fcf7fb8eb32c12772adb8583aa3
parentbfd4ea424d86ee68f6d456fa4be1078b592311fc (diff)
parent7eb17ebe240b0ad1dc4b5fd946d7f0c19c6dbb31 (diff)
downloadbundler-7bc8aa06783b0d47330e294b48f656df46643004.tar.gz
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 <deivid.rodriguez@riseup.net>
-rw-r--r--task/bundler_3.rake (renamed from task/bundler_2.rake)4
1 files changed, 2 insertions, 2 deletions
diff --git a/task/bundler_2.rake b/task/bundler_3.rake
index 4b0be8d3a9..f40837017c 100644
--- a/task/bundler_2.rake
+++ b/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")