Skip to content

Commit d1f3656

Browse files
committed
fix: ensure RUBYGEMS_GEMDEPS is unset for all scripts
Raised in pact-foundation/pact-mock-service-npm#16
1 parent 42420b3 commit d1f3656

12 files changed

+12
-2
lines changed

packaging/pact-broker.bat

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ CALL :RESOLVE "%RUNNING_PATH%\.." ROOT_PATH
66
:: Tell Bundler where the Gemfile and gems are.
77
set "BUNDLE_GEMFILE=%ROOT_PATH%\lib\vendor\Gemfile"
88
set BUNDLE_IGNORE_CONFIG=
9+
set RUBYGEMS_GEMDEPS=
910
set BUNDLE_FROZEN=1
1011

1112
:: Run the actual app using the bundled Ruby interpreter, with Bundler activated.

packaging/pact-broker.sh

+1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ LIBDIR="`cd \"$DIR\" && cd ../lib && pwd`"
2020
# Tell Bundler where the Gemfile and gems are.
2121
export BUNDLE_GEMFILE="$LIBDIR/vendor/Gemfile"
2222
unset BUNDLE_IGNORE_CONFIG
23+
unset RUBYGEMS_GEMDEPS
2324
export BUNDLE_FROZEN=1
2425

2526
# Run the actual app using the bundled Ruby interpreter, with Bundler activated.

packaging/pact-mock-service.bat

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ CALL :RESOLVE "%RUNNING_PATH%\.." ROOT_PATH
66
:: Tell Bundler where the Gemfile and gems are.
77
set "BUNDLE_GEMFILE=%ROOT_PATH%\lib\vendor\Gemfile"
88
set BUNDLE_IGNORE_CONFIG=
9+
set RUBYGEMS_GEMDEPS=
910
set BUNDLE_FROZEN=1
1011

1112
:: Run the actual app using the bundled Ruby interpreter, with Bundler activated.

packaging/pact-mock-service.sh

+1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ LIBDIR="`cd \"$DIR\" && cd ../lib && pwd`"
2020
# Tell Bundler where the Gemfile and gems are.
2121
export BUNDLE_GEMFILE="$LIBDIR/vendor/Gemfile"
2222
unset BUNDLE_IGNORE_CONFIG
23+
unset RUBYGEMS_GEMDEPS
2324
export BUNDLE_FROZEN=1
2425

2526
# Run the actual app using the bundled Ruby interpreter, with Bundler activated.

packaging/pact-provider-verifier.bat

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ CALL :RESOLVE "%RUNNING_PATH%\.." ROOT_PATH
66
:: Tell Bundler where the Gemfile and gems are.
77
set "BUNDLE_GEMFILE=%ROOT_PATH%\lib\vendor\Gemfile"
88
set BUNDLE_IGNORE_CONFIG=
9+
set RUBYGEMS_GEMDEPS=
910
set BUNDLE_FROZEN=1
1011

1112
:: Run the actual app using the bundled Ruby interpreter, with Bundler activated.

packaging/pact-provider-verifier.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ LIBDIR="`cd \"$DIR\" && cd ../lib && pwd`"
2020
# Tell Bundler where the Gemfile and gems are.
2121
export BUNDLE_GEMFILE="$LIBDIR/vendor/Gemfile"
2222
unset BUNDLE_IGNORE_CONFIG
23+
unset RUBYGEMS_GEMDEPS
2324
export BUNDLE_FROZEN=1
24-
unset RUBYGEMS_GEMDEPS # See https://github.com/pact-foundation/pact-mock-service-npm/issues/16
2525

2626
# Run the actual app using the bundled Ruby interpreter, with Bundler activated.
2727
exec "$LIBDIR/ruby/bin/ruby" -rbundler/setup -rreadline -I "$LIBDIR/app/lib" "$LIBDIR/app/pact-provider-verifier.rb" "$@"

packaging/pact-publish.bat

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ CALL :RESOLVE "%RUNNING_PATH%\.." ROOT_PATH
66
:: Tell Bundler where the Gemfile and gems are.
77
set "BUNDLE_GEMFILE=%ROOT_PATH%\lib\vendor\Gemfile"
88
set BUNDLE_IGNORE_CONFIG=
9+
set RUBYGEMS_GEMDEPS=
910
set BUNDLE_FROZEN=1
1011

1112
:: Run the actual app using the bundled Ruby interpreter, with Bundler activated.

packaging/pact-publish.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ LIBDIR="`cd \"$DIR\" && cd ../lib && pwd`"
2020
# Tell Bundler where the Gemfile and gems are.
2121
export BUNDLE_GEMFILE="$LIBDIR/vendor/Gemfile"
2222
unset BUNDLE_IGNORE_CONFIG
23+
unset RUBYGEMS_GEMDEPS
2324
export BUNDLE_FROZEN=1
24-
unset RUBYGEMS_GEMDEPS # See https://github.com/pact-foundation/pact-mock-service-npm/issues/16
2525

2626
# Run the actual app using the bundled Ruby interpreter, with Bundler activated.
2727
exec "$LIBDIR/ruby/bin/ruby" -rbundler/setup -rreadline -I "$LIBDIR/app/lib" "$LIBDIR/app/pact-publish.rb" "$@"

packaging/pact-stub-service.bat

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ CALL :RESOLVE "%RUNNING_PATH%\.." ROOT_PATH
66
:: Tell Bundler where the Gemfile and gems are.
77
set "BUNDLE_GEMFILE=%ROOT_PATH%\lib\vendor\Gemfile"
88
set BUNDLE_IGNORE_CONFIG=
9+
set RUBYGEMS_GEMDEPS=
910
set BUNDLE_FROZEN=1
1011

1112
:: Run the actual app using the bundled Ruby interpreter, with Bundler activated.

packaging/pact-stub-service.sh

+1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ LIBDIR="`cd \"$DIR\" && cd ../lib && pwd`"
2020
# Tell Bundler where the Gemfile and gems are.
2121
export BUNDLE_GEMFILE="$LIBDIR/vendor/Gemfile"
2222
unset BUNDLE_IGNORE_CONFIG
23+
unset RUBYGEMS_GEMDEPS
2324
export BUNDLE_FROZEN=1
2425

2526
# Run the actual app using the bundled Ruby interpreter, with Bundler activated.

packaging/pact.bat

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ CALL :RESOLVE "%RUNNING_PATH%\.." ROOT_PATH
66
:: Tell Bundler where the Gemfile and gems are.
77
set "BUNDLE_GEMFILE=%ROOT_PATH%\lib\vendor\Gemfile"
88
set BUNDLE_IGNORE_CONFIG=
9+
set RUBYGEMS_GEMDEPS=
910
set BUNDLE_FROZEN=1
1011

1112
:: Run the actual app using the bundled Ruby interpreter, with Bundler activated.

packaging/pact.sh

+1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ LIBDIR="`cd \"$DIR\" && cd ../lib && pwd`"
2020
# Tell Bundler where the Gemfile and gems are.
2121
export BUNDLE_GEMFILE="$LIBDIR/vendor/Gemfile"
2222
unset BUNDLE_IGNORE_CONFIG
23+
unset RUBYGEMS_GEMDEPS
2324
export BUNDLE_FROZEN=1
2425

2526
# Run the actual app using the bundled Ruby interpreter, with Bundler activated.

0 commit comments

Comments
 (0)