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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 5705c6f8c4fe983c2cb2c5f2be606e3d494f1ac3
4
- data.tar.gz: 4ba3900546869ecf9f86d783ab3e2d74addd028c
3
+ metadata.gz: e4e0645299d4021d5e3a99a489a55fe172d75bba
4
+ data.tar.gz: 163cc87eb1e6b8b0860abaa96de08292625b69a0
5
5
  SHA512:
6
- metadata.gz: e8bf385b08ed2113cb7332df410559b259bbf93306e77ba00f23ec8a22b24556f152e69e88d317066f8c77ce8521ac2e0bc8bc177f662da27371a7afc1e0b52b
7
- data.tar.gz: 2300ed0ea707978c082fe214694d495cef48a323350e23d27c4a97b932bde6a122f915ee7fc493733f351da7a2042eda83e77860bafffbc949e7cabc840acc32
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
@@ -8,6 +8,7 @@
8
8
  3. Add files to git
9
9
 
10
10
  $ git add CHANGELOG.md lib/pact/support/version.rb
11
+ $ git commit -m "Releasing version $(ruby -r ./lib/pact/support/version.rb -e "puts Pact::Support::VERSION")"
11
12
 
12
13
  3. Release:
13
14
 
@@ -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
@@ -1,5 +1,5 @@
1
1
  module Pact
2
2
  module Support
3
- VERSION = "1.1.3"
3
+ VERSION = "1.1.4"
4
4
  end
5
5
  end
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.3
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-27 00:00:00.000000000 Z
15
+ date: 2017-07-31 00:00:00.000000000 Z
16
16
  dependencies:
17
17
  - !ruby/object:Gem::Dependency
18
18
  name: randexp