From 0055585dec13d131880ca706fda3a69a0ea1dc4c Mon Sep 17 00:00:00 2001 From: Elia Schito Date: Fri, 10 May 2019 15:29:45 +0200 Subject: [PATCH] Eval the custom Gemfile with file and line number --- Gemfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemfile b/Gemfile index 3b6add51aab..8c3042592ca 100644 --- a/Gemfile +++ b/Gemfile @@ -64,4 +64,4 @@ gem 'rspec_junit_formatter', require: false, group: :ci gem 'yard', require: false, group: :docs custom_gemfile = File.expand_path('Gemfile-custom', __dir__) -eval File.read(custom_gemfile) if File.exist?(custom_gemfile) +eval File.read(custom_gemfile), nil, custom_gemfile, 0 if File.exist?(custom_gemfile)