summaryrefslogtreecommitdiff
path: root/spec/support/builders.rb
diff options
context:
space:
mode:
authorDavid Rodríguez <deivid.rodriguez@riseup.net>2020-03-05 20:25:18 +0100
committerDavid Rodríguez <deivid.rodriguez@riseup.net>2020-03-06 14:01:37 +0100
commit7923737ef28e45964a8f437824722265ecc9b278 (patch)
treec95fb717aedcdc8c6296e6d77ac50a4113ea7648 /spec/support/builders.rb
parent140b5de76f2e23fc44333d55efb689ad27a81828 (diff)
downloadbundler-7923737ef28e45964a8f437824722265ecc9b278.tar.gz
Remove unneeded `:keep_path`
Diffstat (limited to 'spec/support/builders.rb')
-rw-r--r--spec/support/builders.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/support/builders.rb b/spec/support/builders.rb
index ac56216a85..a78219707e 100644
--- a/spec/support/builders.rb
+++ b/spec/support/builders.rb
@@ -763,9 +763,9 @@ module Spec
gem_path = File.expand_path("#{@spec.full_name}.gem", lib_path)
if opts[:to_system]
- @context.system_gems gem_path, :keep_path => true
+ @context.system_gems gem_path
elsif opts[:to_bundle]
- @context.system_gems gem_path, :path => :bundle_path, :keep_path => true
+ @context.system_gems gem_path, :path => :bundle_path
else
FileUtils.mv(gem_path, destination)
end