Skip to content

Commit 777191f

Browse files
authored
Merge pull request rails#364 from rails/flavorjones-update-bcrypt-pbkdf
dep: work around bcrypt_pbkdf issue on windows
2 parents ec27257 + 72aa03c commit 777191f

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

test/integration/user_journey_test.sh

+4-1
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,12 @@ bundle exec rails new test-app --skip-bundle
2525
pushd test-app
2626

2727
# make sure to use the same version of rails (e.g., install from git source if necessary)
28-
bundle remove rails
28+
bundle remove rails --skip-install
2929
bundle add rails --skip-install ${RAILSOPTS:-}
3030

31+
# work around https://github.com/net-ssh/bcrypt_pbkdf-ruby/issues/24
32+
bundle add bcrypt_pbkdf -v 1.1.1.rc2 --skip-install
33+
3134
# use the tailwindcss-rails under test
3235
bundle add tailwindcss-rails --path="../.."
3336
bundle install

0 commit comments

Comments
 (0)