From 72aa03cbdf96f5b3406a56a404e193b028799d9a Mon Sep 17 00:00:00 2001 From: Mike Dalessio Date: Sun, 19 May 2024 14:13:34 -0400 Subject: [PATCH] wip: try to work around bcrypt_pbkdf issue on windows --- test/integration/user_journey_test.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/test/integration/user_journey_test.sh b/test/integration/user_journey_test.sh index 95c3174d..b4242e0c 100755 --- a/test/integration/user_journey_test.sh +++ b/test/integration/user_journey_test.sh @@ -25,9 +25,12 @@ bundle exec rails new test-app --skip-bundle pushd test-app # make sure to use the same version of rails (e.g., install from git source if necessary) -bundle remove rails +bundle remove rails --skip-install bundle add rails --skip-install ${RAILSOPTS:-} +# work around https://github.com/net-ssh/bcrypt_pbkdf-ruby/issues/24 +bundle add bcrypt_pbkdf -v 1.1.1.rc2 --skip-install + # use the tailwindcss-rails under test bundle add tailwindcss-rails --path="../.." bundle install