pact 1.19.2 → 1.20.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +9 -0
- data/lib/pact/provider/verification_results/publish.rb +1 -1
- data/lib/pact/tasks/task_helper.rb +2 -1
- data/lib/pact/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4ff1d60084d4c20892a663b68af77d3c05e419a6
|
|
4
|
+
data.tar.gz: 78f85722706fc0c6328a16172b4e9a31adb2c4b7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5873fe24cd3eb193068ae0a155a4ee0dfbc15ee4f2b53e4b7f1f39549b58d2a3e5563a11f7915caaa82a33562de88a35519b52223dfef6e3b103caa4c85213ea
|
|
7
|
+
data.tar.gz: d12f70c741c1367936ebd3a6d004b005390a2892e2171368aa0242186fd73b3fd46c515d488739e18d566c3c741f3ed561ed294c25df1db625a2c247e26edee4
|
data/CHANGELOG.md
CHANGED
|
@@ -107,7 +107,7 @@ module Pact
|
|
|
107
107
|
|
|
108
108
|
if response.code.start_with?("2")
|
|
109
109
|
new_resource_url = JSON.parse(response.body)['_links']['self']['href']
|
|
110
|
-
|
|
110
|
+
Pact.configuration.output_stream.puts "INFO: Verification results published to #{new_resource_url}"
|
|
111
111
|
else
|
|
112
112
|
raise PublicationError.new("Error returned from verification results publication #{response.code} #{response.body}")
|
|
113
113
|
end
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
require 'pact/configuration'
|
|
1
2
|
require 'pact/provider/pact_helper_locator'
|
|
2
3
|
require 'rake/file_utils'
|
|
3
4
|
require 'shellwords'
|
|
@@ -36,7 +37,7 @@ module Pact
|
|
|
36
37
|
end
|
|
37
38
|
|
|
38
39
|
def execute_cmd command
|
|
39
|
-
|
|
40
|
+
Pact.configuration.output_stream.puts command
|
|
40
41
|
temporarily_set_env_var 'PACT_EXECUTING_LANGUAGE', 'ruby' do
|
|
41
42
|
temporarily_set_env_var 'PACT_INTERACTION_RERUN_COMMAND', PACT_INTERACTION_RERUN_COMMAND do
|
|
42
43
|
exit_status = system(command) ? 0 : 1
|
data/lib/pact/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: pact
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.20.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- James Fraser
|
|
@@ -12,7 +12,7 @@ authors:
|
|
|
12
12
|
autorequire:
|
|
13
13
|
bindir: bin
|
|
14
14
|
cert_chain: []
|
|
15
|
-
date: 2017-
|
|
15
|
+
date: 2017-12-09 00:00:00.000000000 Z
|
|
16
16
|
dependencies:
|
|
17
17
|
- !ruby/object:Gem::Dependency
|
|
18
18
|
name: randexp
|