diff options
author | David RodrÃguez <deivid.rodriguez@riseup.net> | 2019-08-15 16:47:44 +0200 |
---|---|---|
committer | David RodrÃguez <deivid.rodriguez@riseup.net> | 2019-08-16 08:43:49 +0200 |
commit | ca5ce01a9bafd33f4538537cf009f3e16e6587e5 (patch) | |
tree | 3d19db71864a3d2aaf5396eec81c20e66ad5beff /spec | |
parent | 6ca0271b27577fb1bb94188e5473b91b623410b7 (diff) | |
download | bundler-ca5ce01a9bafd33f4538537cf009f3e16e6587e5.tar.gz |
Reconcile test
The `:bundler` gem is not needed in the regular repo either.
Diffstat (limited to 'spec')
-rw-r--r-- | spec/commands/newgem_spec.rb | 4 |
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 |