Skip to content

Commit f4eb23a

Browse files
committed
feat(gems): upgrade pact_broker-client to 1.8.0
BREAKING CHANGE Moved `pact-publish` to `pact-broker publish`
1 parent 6bb7452 commit f4eb23a

8 files changed

+52
-5
lines changed

packaging/Gemfile.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ GEM
5353
rspec (>= 2.14)
5454
term-ansicolor (~> 1.0)
5555
thor
56-
pact_broker-client (1.7.0)
56+
pact_broker-client (1.8.0)
5757
httparty
5858
json
5959
table_print (~> 1.5)

packaging/README.md.template

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ This version (<%= ENV.fetch('VERSION') %>) of the Pact standalone executables pa
3333
<%= pact_provider_verifier_usage %>
3434
```
3535

36-
### pact-publish
36+
### pact-broker
3737

3838
```
3939
<%= pact_publish_usage %>

packaging/generate_readme_contents.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@
88
pact_mock_service_usage = `bundle exec pact-mock-service help` + `bundle exec pact-mock-service help service`
99
pact_stub_service_usage = `bundle exec pact-stub-service help`
1010
pact_provider_verifier_usage = `bundle exec pact-provider-verifier help`
11-
pact_publish_usage = `bundle exec pact-publish help`
11+
pact_publish_usage = `bundle exec pact-broker help publish`
1212
puts ERB.new(ARGF.read).result(binding)

packaging/pact-broker.bat

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
@echo off
2+
3+
SET RUNNING_PATH=%~dp0
4+
CALL :RESOLVE "%RUNNING_PATH%\.." ROOT_PATH
5+
6+
:: Tell Bundler where the Gemfile and gems are.
7+
set "BUNDLE_GEMFILE=%ROOT_PATH%\lib\vendor\Gemfile"
8+
set BUNDLE_IGNORE_CONFIG=
9+
10+
:: Run the actual app using the bundled Ruby interpreter, with Bundler activated.
11+
@"%ROOT_PATH%\lib\ruby\bin\ruby.bat" -rbundler/setup -I%ROOT_PATH%\lib\app\lib "%ROOT_PATH%\lib\app\pact-broker.rb" %*
12+
13+
GOTO :EOF
14+
15+
:RESOLVE
16+
SET %2=%~f1
17+
GOTO :EOF

packaging/pact-broker.rb

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
require 'pact_broker/client/cli/broker'
2+
PactBroker::Client::CLI::Broker.start

packaging/pact-broker.sh

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
#!/bin/sh
2+
set -e
3+
4+
SOURCE="$0"
5+
while [ -h "$SOURCE" ]; do # resolve $SOURCE until the file is no longer a symlink
6+
TARGET="$(readlink "$SOURCE")"
7+
if [[ $TARGET == /* ]]; then
8+
SOURCE="$TARGET"
9+
else
10+
DIR="$( dirname "$SOURCE" )"
11+
SOURCE="$DIR/$TARGET" # if $SOURCE was a relative symlink, we need to resolve it relative to the path where the symlink file was located
12+
fi
13+
done
14+
RDIR="$( dirname "$SOURCE" )"
15+
DIR="$( cd -P "$( dirname "$SOURCE" )" && pwd )"
16+
17+
# Figure out where this script is located.
18+
LIBDIR="`cd \"$DIR\" && cd ../lib && pwd`"
19+
20+
# Tell Bundler where the Gemfile and gems are.
21+
export BUNDLE_GEMFILE="$LIBDIR/vendor/Gemfile"
22+
unset BUNDLE_IGNORE_CONFIG
23+
24+
# Run the actual app using the bundled Ruby interpreter, with Bundler activated.
25+
exec "$LIBDIR/ruby/bin/ruby" -rreadline -rbundler/setup -I$LIBDIR/app/lib "$LIBDIR/app/pact-broker.rb" $@

packaging/pact-publish.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
require 'pact_broker/client/cli/publish'
2-
PactBroker::Client::CLI::Publish.start
1+
puts "ERROR: The `pact-publish` command has been moved to `pact-broker publish`. We apologise for any inconvenience caused."
2+
exit(1)

tasks/package.rake

+3
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@ def create_package(version, target, os_type = :unix)
7878
sh "cp packaging/pact-stub-service.rb #{package_dir}/lib/app/pact-stub-service.rb"
7979
sh "cp packaging/pact-provider-verifier.rb #{package_dir}/lib/app/pact-provider-verifier.rb"
8080
sh "cp packaging/pact-publish.rb #{package_dir}/lib/app/pact-publish.rb"
81+
sh "cp packaging/pact-broker.rb #{package_dir}/lib/app/pact-broker.rb"
8182
# sh "cp -pR lib #{package_dir}/lib/app"
8283
sh "mkdir #{package_dir}/lib/ruby"
8384
sh "tar -xzf build/traveling-ruby-#{version}-#{target}.tar.gz -C #{package_dir}/lib/ruby"
@@ -87,11 +88,13 @@ def create_package(version, target, os_type = :unix)
8788
sh "cp packaging/pact-stub-service.sh #{package_dir}/bin/pact-stub-service"
8889
sh "cp packaging/pact-provider-verifier.sh #{package_dir}/bin/pact-provider-verifier"
8990
sh "cp packaging/pact-publish.sh #{package_dir}/bin/pact-publish"
91+
sh "cp packaging/pact-broker.sh #{package_dir}/bin/pact-broker"
9092
else
9193
sh "cp packaging/pact-mock-service.bat #{package_dir}/bin/pact-mock-service.bat"
9294
sh "cp packaging/pact-stub-service.bat #{package_dir}/bin/pact-stub-service.bat"
9395
sh "cp packaging/pact-provider-verifier.bat #{package_dir}/bin/pact-provider-verifier.bat"
9496
sh "cp packaging/pact-publish.bat #{package_dir}/bin/pact-publish.bat"
97+
sh "cp packaging/pact-broker.bat #{package_dir}/bin/pact-broker.bat"
9598
end
9699

97100
sh "cp -pR build/vendor #{package_dir}/lib/"

0 commit comments

Comments
 (0)