Skip to content

Commit

Permalink
Merge pull request #3204 from nebulab/elia/gemfile-eval-location
Browse files Browse the repository at this point in the history
Eval the custom Gemfile with file and line number
  • Loading branch information
kennyadsl authored May 13, 2019
2 parents 208febe + 0055585 commit 871d82a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -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)

0 comments on commit 871d82a

Please sign in to comment.