summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
authorBundlerbot <bot@bundler.io>2019-12-17 22:32:52 +0000
committerBundlerbot <bot@bundler.io>2019-12-17 22:32:52 +0000
commit8bd21aa0f5dc92fce4df277715f4eab546d30a7f (patch)
treeb2ab1e41a1f24405d4fbf30e25e2daf06eaf7c8a /Rakefile
parent683fe9799e37bff81e53f1a7e97d3a19896b8fc9 (diff)
parent0a5db7e274cac1198d7e22d4e302dd9002342eae (diff)
downloadbundler-8bd21aa0f5dc92fce4df277715f4eab546d30a7f.tar.gz
Merge #7502v2.1.1
7502: Release 2.1.1 r=deivid-rodriguez a=deivid-rodriguez ### What was the end-user problem that led to this PR? The problem was I want to get regression fixed as soon as possible to reduce impact. ### What is your fix for the problem, implemented in this PR? My fix is to release what we have already fixed as soon as possible. Co-authored-by: Bundlerbot <bot@bundler.io> Co-authored-by: David Rodríguez <deivid.rodriguez@riseup.net>
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile9
1 files changed, 8 insertions, 1 deletions
diff --git a/Rakefile b/Rakefile
index eb37dffd9a..4fd9a5179a 100644
--- a/Rakefile
+++ b/Rakefile
@@ -1,6 +1,5 @@
# frozen_string_literal: true
-$:.unshift File.expand_path("../lib", __FILE__)
require "benchmark"
require_relative "spec/support/rubygems_ext"
@@ -123,6 +122,14 @@ task :rubocop do
sh("bin/rubocop --parallel")
end
+desc "Check RVM integration"
+task :check_rvm_integration do
+ # The rubygems-bundler gem is installed by RVM by default and it could easily
+ # break when we change bundler. Make sure that binstubs still run with it
+ # installed.
+ sh("bin/rake install && gem install rubygems-bundler && rake -T")
+end
+
namespace :man do
if RUBY_ENGINE == "jruby"
task(:build) {}