Skip to content

Commit 1feec03

Browse files
committed
feat(pact-message): add pact-message binary to release
1 parent eaa6918 commit 1feec03

6 files changed

+85
-0
lines changed

packaging/Gemfile

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
source 'http://rubygems.org'
22

33
gem "pact"
4+
gem "pact-message"
45
gem "pact-mock_service"
56
gem "pact-provider-verifier"
67
gem "pact_broker-client"

packaging/README.md.template

+8
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ This version (<%= ENV.fetch('VERSION') %>) of the Pact standalone executables pa
1111
* pact-support gem <%= Pact::Support::VERSION %>
1212
* pact-provider-verifier gem <%= Pact::ProviderVerifier::VERSION %>
1313
* pact_broker-client gem <%= PactBroker::Client::VERSION %>
14+
* pact-message gem <%= Pact::Message::VERSION %>
15+
1416

1517
## Usage
1618

@@ -64,3 +66,9 @@ To connect to a Pact Broker that uses custom SSL cerificates, set the environmen
6466
```
6567
<%= pact_docs_usage %>
6668
```
69+
70+
### pact-message
71+
72+
```
73+
<%= pact_message_usage %>
74+
```

packaging/generate_readme_contents.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
require 'erb'
22
require 'pact/version'
3+
require 'pact/message/version'
34
require 'pact/mock_service/version'
45
require 'pact/support/version'
56
require 'pact/provider_verifier/version'
@@ -11,4 +12,5 @@
1112
pact_publish_usage = `bundle exec pact-broker help publish`
1213
pact_broker_can_i_deploy_usage = `bundle exec pact-broker help can-i-deploy`
1314
pact_docs_usage = `bundle exec pact help docs`
15+
pact_message_usage = `bundle exec pact-message help`
1416
puts ERB.new(ARGF.read).result(binding)

packaging/pact-message.bat

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
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+
set RUBYGEMS_GEMDEPS=
10+
set BUNDLE_FROZEN=1
11+
12+
:: Run the actual app using the bundled Ruby interpreter, with Bundler activated.
13+
@"%ROOT_PATH%\lib\ruby\bin\ruby.bat" -rbundler/setup -I%ROOT_PATH%\lib\app\lib "%ROOT_PATH%\lib\app\pact-message.rb" %*
14+
15+
GOTO :EOF
16+
17+
:RESOLVE
18+
SET %2=%~f1
19+
GOTO :EOF

packaging/pact-message.rb

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
require 'pact/message/cli'
2+
3+
class Thor
4+
module Base
5+
module ClassMethods
6+
7+
def basename
8+
# chomps the trailing .rb so it doesn't show in the help text
9+
File.basename($PROGRAM_NAME).split(" ").first.chomp(".rb")
10+
end
11+
end
12+
end
13+
end
14+
15+
# Travelling Ruby sets its own CA cert bundle in lib/ruby/bin/ruby_environment
16+
# and creates backup environment variables for the original SSL_CERT values.
17+
# Restore the original values here *if they are present* so that we can connect to
18+
# a broker with a custom SSL certificate.
19+
20+
if ENV['ORIG_SSL_CERT_DIR'] && ENV['ORIG_SSL_CERT_DIR'] != ''
21+
ENV['SSL_CERT_DIR'] = ENV['ORIG_SSL_CERT_DIR']
22+
end
23+
24+
if ENV['ORIG_SSL_CERT_FILE'] && ENV['ORIG_SSL_CERT_FILE'] != ''
25+
ENV['SSL_CERT_FILE'] = ENV['ORIG_SSL_CERT_FILE']
26+
end
27+
28+
Pact::Message::CLI.start

packaging/pact-message.sh

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
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+
unset RUBYGEMS_GEMDEPS
24+
export BUNDLE_FROZEN=1
25+
26+
# Run the actual app using the bundled Ruby interpreter, with Bundler activated.
27+
exec "$LIBDIR/ruby/bin/ruby" -rreadline -rbundler/setup -I "$LIBDIR/app/lib" "$LIBDIR/app/pact-message.rb" "$@"

0 commit comments

Comments
 (0)