From 43184056094af2495f05964c78bc517e07721802 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Rodr=C3=ADguez?= Date: Thu, 15 Aug 2019 18:54:15 +0200 Subject: [PATCH] [bundler/bundler] Extract a `root_gemspec` local variable https://github.com/bundler/bundler/commit/a4beba4cbf --- spec/bundler/support/path.rb | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/spec/bundler/support/path.rb b/spec/bundler/support/path.rb index 38d8ff8102..73d828cb5d 100644 --- a/spec/bundler/support/path.rb +++ b/spec/bundler/support/path.rb @@ -134,11 +134,12 @@ module Spec def with_root_gemspec if ruby_core? + root_gemspec = root.join("bundler.gemspec") spec = Gem::Specification.load(gemspec.to_s) spec.bindir = "libexec" - File.open(root.join("bundler.gemspec").to_s, "w") {|f| f.write spec.to_ruby } - yield(root.join("bundler.gemspec")) - FileUtils.rm(root.join("bundler.gemspec")) + File.open(root_gemspec.to_s, "w") {|f| f.write spec.to_ruby } + yield(root_gemspec) + FileUtils.rm(root_gemspec) else yield(gemspec) end