Skip to content

Commit 99bf770

Browse files
committed
feat: add can-i-deploy usage to README
1 parent c591d36 commit 99bf770

File tree

4 files changed

+22
-0
lines changed

4 files changed

+22
-0
lines changed

packaging/Gemfile

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

3+
gem "pact"
34
gem "pact-mock_service"
45
gem "pact-provider-verifier"
56
gem "pact_broker-client"

packaging/README.md.template

+11
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,17 @@ This version (<%= ENV.fetch('VERSION') %>) of the Pact standalone executables pa
3838
<a name="pact-broker-client"></a>
3939
### pact-broker client
4040

41+
<a name="pact-broker-client-publish"></a>
42+
#### publish
43+
4144
```
4245
<%= pact_publish_usage %>
4346
```
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+

packaging/generate_readme_contents.rb

+1
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,5 @@
99
pact_stub_service_usage = `bundle exec pact-stub-service help`
1010
pact_provider_verifier_usage = `bundle exec pact-provider-verifier help`
1111
pact_publish_usage = `bundle exec pact-broker help publish`
12+
pact_broker_can_i_deploy = `bundle exec pact-broker help can-i-deploy`
1213
puts ERB.new(ARGF.read).result(binding)

tasks/package.rake

+9
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,15 @@ namespace :package do
4848
sh "rm -rf build/tmp"
4949
sh "rm -f build/vendor/*/*/cache/*"
5050
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
5160
end
5261

5362
file "build/traveling-ruby-#{TRAVELING_RUBY_VERSION}-linux-x86.tar.gz" do

0 commit comments

Comments
 (0)