From 745b2861617c62413357e27de9ded8098fcc031d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Rodr=C3=ADguez?= Date: Tue, 6 Aug 2019 13:16:15 +0200 Subject: [PATCH] [bundler/bundler] Move `lib` helper together with path helpers https://github.com/bundler/bundler/commit/f2df73bdb4 --- spec/bundler/support/helpers.rb | 4 ---- spec/bundler/support/path.rb | 4 ++++ 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/spec/bundler/support/helpers.rb b/spec/bundler/support/helpers.rb index 6a333a9658..707b68d050 100644 --- a/spec/bundler/support/helpers.rb +++ b/spec/bundler/support/helpers.rb @@ -95,10 +95,6 @@ module Spec run(cmd, *args) end - def lib - root.join("lib") - end - def spec spec_dir.to_s end diff --git a/spec/bundler/support/path.rb b/spec/bundler/support/path.rb index 7956c77800..302d79dc46 100644 --- a/spec/bundler/support/path.rb +++ b/spec/bundler/support/path.rb @@ -104,6 +104,10 @@ module Spec tmp("libs", *args) end + def lib + root.join("lib") + end + def global_plugin_gem(*args) home ".bundle", "plugin", "gems", *args end