pact-support 1.1.3 → 1.1.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +3 -0
- data/RELEASING.md +1 -0
- data/lib/pact/matchers/unix_diff_formatter.rb +2 -1
- data/lib/pact/support/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: e4e0645299d4021d5e3a99a489a55fe172d75bba
|
4
|
+
data.tar.gz: 163cc87eb1e6b8b0860abaa96de08292625b69a0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 27e82aa4e9d06ae561ec43c9694f1769c801c48e86c5b7936bebb32739587073b71ee7c85b60474c3fb49c95af4c70bfe9aec0696cf90561cd0bec0691153a43
|
7
|
+
data.tar.gz: 2cf0ceee17aa95868b8b2298194fd766b2ef3e2b5242a319869bb14586c1d36ab282b3c9bb43de757946a87db33828622c6e9ac627f6c0c1ce6faad46ebc90aa
|
data/CHANGELOG.md
CHANGED
@@ -2,6 +2,9 @@ Do this to generate your change history
|
|
2
2
|
|
3
3
|
git log --pretty=format:' * %h - %s (%an, %ad)'
|
4
4
|
|
5
|
+
### 1.1.4 (31 July 2017)
|
6
|
+
* 425881c - fix(cirular dependency for UnixDiffFormatter): Fixes circular dependency between pact/configuration and pact/matchers/unix_diff_formatter (Beth Skurrie, Mon Jul 31 11:45:44 2017 +1000)
|
7
|
+
|
5
8
|
### 1.1.3 (28 July 2017)
|
6
9
|
* cd0fc09 - fix(pact serialisation): Use square bracket notation for JSON path keys containing dots when serialising the pact Fixes https://github.com/pact-foundation/pact-support/issues/39 (Beth Skurrie, Fri Jul 28 09:39:15 2017 +1000)
|
7
10
|
|
data/RELEASING.md
CHANGED
@@ -1,7 +1,6 @@
|
|
1
1
|
require 'pact/shared/jruby_support'
|
2
2
|
require 'pact/matchers/differ'
|
3
3
|
require 'pact/matchers/extract_diff_messages'
|
4
|
-
require 'pact/configuration'
|
5
4
|
|
6
5
|
module Pact
|
7
6
|
module Matchers
|
@@ -22,6 +21,8 @@ module Pact
|
|
22
21
|
end
|
23
22
|
|
24
23
|
def self.call diff, options = {}
|
24
|
+
# require stops circular dependency from pact/configuration <-> pact/matchers/unix_diff_formatter
|
25
|
+
require 'pact/configuration'
|
25
26
|
default_options = {colour: Pact.configuration.color_enabled}
|
26
27
|
new(diff, default_options.merge(options)).call
|
27
28
|
end
|
data/lib/pact/support/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: pact-support
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.
|
4
|
+
version: 1.1.4
|
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-07-
|
15
|
+
date: 2017-07-31 00:00:00.000000000 Z
|
16
16
|
dependencies:
|
17
17
|
- !ruby/object:Gem::Dependency
|
18
18
|
name: randexp
|