pact-support 1.1.0 → 1.1.1
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 +3 -0
- data/lib/pact/matchers/matchers.rb +6 -1
- data/lib/pact/support/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 95820adaa595dc1673aab77ebb97494ddb08bc48
|
|
4
|
+
data.tar.gz: 7cf2419270f7d417f378648dda47cff9c11f16cd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b585de5fde5541e24230fc6a52f3e2c4f3bcb0d84299488f5b3092f6cc513309e93129443b22a1a71825f0618a6da7de174637b8b7087e22f59a043ae53c1d0f
|
|
7
|
+
data.tar.gz: 9e7ae773b68f2905478b270660c4a3bb1759bca55074d340b8ef8aebb5057a5cf715b908ba3e6dec59860ef50789490ce073076dbe3c24bc23414f3f3e305064
|
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.1 (20 June 2017)
|
|
6
|
+
* 14789df - Adding missing requires for #36 (Beth Skurrie, Tue Jun 20 16:27:43 2017 +1000)
|
|
7
|
+
|
|
5
8
|
### 1.1.0 (19 June 2017)
|
|
6
9
|
* 1659c54 - Add list of messages to diff output (Beth Skurrie, Mon Jun 19 09:39:08 2017 +1000)
|
|
7
10
|
* e18debc - Reify actual and expected when a type difference is encountered while doing exact matching (Beth Skurrie, Tue May 30 09:24:18 2017 +1000)
|
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
require 'pact/term'
|
|
2
2
|
require 'pact/something_like'
|
|
3
|
+
require 'pact/reification'
|
|
3
4
|
require 'pact/shared/null_expectation'
|
|
4
5
|
require 'pact/shared/key_not_found'
|
|
6
|
+
require 'pact/shared/request' # Not sure why this is needed, possibly something downstream https://github.com/pact-foundation/pact-support/issues/36
|
|
5
7
|
require 'pact/matchers/unexpected_key'
|
|
6
8
|
require 'pact/matchers/unexpected_index'
|
|
7
9
|
require 'pact/matchers/index_not_found'
|
|
@@ -14,7 +16,10 @@ require 'pact/matchers/no_diff_at_index'
|
|
|
14
16
|
require 'pact/array_like'
|
|
15
17
|
|
|
16
18
|
module Pact
|
|
17
|
-
#
|
|
19
|
+
# Should be called Differs
|
|
20
|
+
# Note to self: Some people (Mike Williams) are using this module directly, so if you refactor it
|
|
21
|
+
# maintain backwards compatibility
|
|
22
|
+
|
|
18
23
|
module Matchers
|
|
19
24
|
|
|
20
25
|
NO_DIFF_AT_INDEX = NoDiffAtIndex.new
|
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.1
|
|
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-06-
|
|
15
|
+
date: 2017-06-20 00:00:00.000000000 Z
|
|
16
16
|
dependencies:
|
|
17
17
|
- !ruby/object:Gem::Dependency
|
|
18
18
|
name: randexp
|
|
@@ -396,7 +396,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
396
396
|
version: '0'
|
|
397
397
|
requirements: []
|
|
398
398
|
rubyforge_project:
|
|
399
|
-
rubygems_version: 2.
|
|
399
|
+
rubygems_version: 2.4.5
|
|
400
400
|
signing_key:
|
|
401
401
|
specification_version: 4
|
|
402
402
|
summary: Shared code for Pact gems
|