summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Rodríguez <deivid.rodriguez@riseup.net>2019-08-15 16:47:44 +0200
committerDavid Rodríguez <deivid.rodriguez@riseup.net>2019-08-16 08:43:49 +0200
commitca5ce01a9bafd33f4538537cf009f3e16e6587e5 (patch)
tree3d19db71864a3d2aaf5396eec81c20e66ad5beff
parent6ca0271b27577fb1bb94188e5473b91b623410b7 (diff)
downloadbundler-ca5ce01a9bafd33f4538537cf009f3e16e6587e5.tar.gz
Reconcile test
The `:bundler` gem is not needed in the regular repo either.
-rw-r--r--spec/commands/newgem_spec.rb4
1 files changed, 1 insertions, 3 deletions
diff --git a/spec/commands/newgem_spec.rb b/spec/commands/newgem_spec.rb
index f4cd29edbc..2ade1653fc 100644
--- a/spec/commands/newgem_spec.rb
+++ b/spec/commands/newgem_spec.rb
@@ -217,9 +217,7 @@ RSpec.describe "bundle gem" do
prepare_gemspec(bundled_app("newgem", "newgem.gemspec"))
Dir.chdir(bundled_app("newgem")) do
- gems = ["rake-12.3.2", :bundler]
- # for Ruby core repository, Ruby 2.6+ has bundler as standard library.
- gems.delete(:bundler) if ruby_core?
+ gems = ["rake-12.3.2"]
system_gems gems, :path => :bundle_path
bundle! "exec rake build"
end