pact-mock_service 2.9.2 → 2.9.3
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/mock_service/run.rb +5 -0
- data/lib/pact/mock_service/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3678c2fe0959a9567c682abda102a67bc64e9825c863fe8e45c20feaa087e4c9
|
|
4
|
+
data.tar.gz: 7cb612c9f10659a307f4091debc428d20f181782418f144ffacab52cc71f5eee
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: dec05f46f65c459f6d0ec67e23c5554a15e9363ade4fbe6e91c146ec55a530be519df1be4b872921ade52efce1f5dcaa72a63c4fbe83ce2c917c090d43de0250
|
|
7
|
+
data.tar.gz: 1556979fb5e6a19cd65e0feaadb2e142c1c87522baf94fb25f9379de6fc5ae7ba6bb56d702317a42cb12ae487d478f5474e46079bacbb5ad3d4d3ef5a8f10b31
|
data/CHANGELOG.md
CHANGED
|
@@ -73,6 +73,11 @@ module Pact
|
|
|
73
73
|
end
|
|
74
74
|
|
|
75
75
|
def webbrick_opts
|
|
76
|
+
# By default, the webrick logs go to $stderr, which then show up as an ERROR
|
|
77
|
+
# log in pact-go, so it was changed to $stdout.
|
|
78
|
+
# $stdout needs sync = true for pact-js to determine the port dynamically from
|
|
79
|
+
# the output (otherwise it does not flush in time for the port to be read)
|
|
80
|
+
$stdout.sync = true
|
|
76
81
|
opts = {
|
|
77
82
|
:Port => port,
|
|
78
83
|
:Host => host,
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: pact-mock_service
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.9.
|
|
4
|
+
version: 2.9.3
|
|
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: 2018-07-
|
|
15
|
+
date: 2018-07-13 00:00:00.000000000 Z
|
|
16
16
|
dependencies:
|
|
17
17
|
- !ruby/object:Gem::Dependency
|
|
18
18
|
name: rack
|