From b200e636903700098bef25f4f51dbc4c46e4c04c Mon Sep 17 00:00:00 2001 From: Nick Charlton Date: Mon, 13 Feb 2023 16:38:28 +0000 Subject: [PATCH] Split binstubs from accepance test helpers install (#209) Passing along `--binstubs` is deprecationed and outputs a lot of warnings. This is good enough and doesn't need further adjustments. --- spec/support/acceptance_test_helpers.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/spec/support/acceptance_test_helpers.rb b/spec/support/acceptance_test_helpers.rb index 08890334..0a259f96 100644 --- a/spec/support/acceptance_test_helpers.rb +++ b/spec/support/acceptance_test_helpers.rb @@ -141,7 +141,8 @@ def build_default_gemfile gem 'appraisal', :path => '#{PROJECT_ROOT}' Gemfile - run "bundle install --binstubs --local" + run "bundle install --local" + run "bundle binstubs --all" end def in_test_directory(&block)