File tree 4 files changed +22
-0
lines changed
4 files changed +22
-0
lines changed Original file line number Diff line number Diff line change 1
1
source 'http://rubygems.org'
2
2
3
+ gem "pact"
3
4
gem "pact-mock_service"
4
5
gem "pact-provider-verifier"
5
6
gem "pact_broker-client"
Original file line number Diff line number Diff line change @@ -38,6 +38,17 @@ This version (<%= ENV.fetch('VERSION') %>) of the Pact standalone executables pa
38
38
<a name="pact-broker-client"></a>
39
39
### pact-broker client
40
40
41
+ <a name="pact-broker-client-publish"></a>
42
+ #### publish
43
+
41
44
```
42
45
<%= pact_publish_usage %>
43
46
```
47
+
48
+ <a name="pact-broker-client-can-i-deploy"></a>
49
+ #### can-i-deploy
50
+
51
+ ```
52
+ <%= pact_broker_can_i_deploy %>
53
+ ```
54
+
Original file line number Diff line number Diff line change 9
9
pact_stub_service_usage = `bundle exec pact-stub-service help`
10
10
pact_provider_verifier_usage = `bundle exec pact-provider-verifier help`
11
11
pact_publish_usage = `bundle exec pact-broker help publish`
12
+ pact_broker_can_i_deploy = `bundle exec pact-broker help can-i-deploy`
12
13
puts ERB . new ( ARGF . read ) . result ( binding )
Original file line number Diff line number Diff line change @@ -48,6 +48,15 @@ namespace :package do
48
48
sh "rm -rf build/tmp"
49
49
sh "rm -f build/vendor/*/*/cache/*"
50
50
end
51
+
52
+ task :generate_readme do
53
+ Bundler . with_clean_env do
54
+ sh "mkdir -p build/tmp"
55
+ sh "cp packaging/Gemfile packaging/Gemfile.lock build/tmp/"
56
+ sh "cd build/tmp && env BUNDLE_IGNORE_CONFIG=1 bundle install --path ../vendor --without development"
57
+ generate_readme
58
+ end
59
+ end
51
60
end
52
61
53
62
file "build/traveling-ruby-#{ TRAVELING_RUBY_VERSION } -linux-x86.tar.gz" do
You can’t perform that action at this time.
0 commit comments