File tree 2 files changed +17
-5
lines changed
2 files changed +17
-5
lines changed Original file line number Diff line number Diff line change @@ -14,11 +14,20 @@ This version (<%= ENV.fetch('VERSION') %>) of the Pact standalone executables pa
14
14
15
15
## Usage
16
16
17
- * Once the package has been extracted:
17
+ ### pact-mock-service
18
18
19
19
```
20
- cd pact/bin
21
- ./pact-mock-service --help start # will display the options for the mock service
22
- ./pact-provider-verifier --help verify # will display the options for the verifier
23
- ./pact-publish --help # will display the options for publishing
20
+ <%= pact_mock_service_usage %>
21
+ ```
22
+
23
+ ### pact-provider-verifier
24
+
25
+ ```
26
+ <%= pact_provider_verifier_usage %>
27
+ ```
28
+
29
+ ### pact-publish
30
+
31
+ ```
32
+ <%= pact_publish_usage %>
24
33
```
Original file line number Diff line number Diff line change 5
5
require 'pact/provider_verifier/version'
6
6
require 'pact_broker/client/version'
7
7
8
+ pact_mock_service_usage = `bundle exec pact-mock-service help` + `bundle exec pact-mock-service help service`
9
+ pact_provider_verifier_usage = `bundle exec pact-provider-verifier help`
10
+ pact_publish_usage = `bundle exec pact-publish help`
8
11
puts ERB . new ( ARGF . read ) . result ( binding )
You can’t perform that action at this time.
0 commit comments