pact-support 0.6.0 → 0.6.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 +4 -0
- data/lib/pact/consumer_contract/query_hash.rb +1 -0
- data/lib/pact/matching_rules/jsonpath.rb +1 -2
- data/lib/pact/support/version.rb +1 -1
- data/spec/spec_helper.rb +0 -3
- 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: beef3d8d0aee405fd146512cfb49cb23b4bedadc
|
|
4
|
+
data.tar.gz: 72981776fd3ec194c9ce6bb7017a828413159cd9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2208542c71eca13d8c3bba7c78eec7c2a6fd478df0ca4ef63e70cfccb1a9bd17068513025bef9b6576962a74a35827080fd696d1d6bf77fa18b6f311b5b0dc8c
|
|
7
|
+
data.tar.gz: 40931117ebafad7d43968eea34375b893b08336c894f7e1cb6da5f7660263f8e86c3b953970cfe463fce7ca18f2bf7bf25f7418ea380db9d9d38c4e487474411
|
data/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,10 @@ Do this to generate your change history
|
|
|
2
2
|
|
|
3
3
|
git log --pretty=format:' * %h - %s (%an, %ad)' vX.Y.Z..HEAD
|
|
4
4
|
|
|
5
|
+
### 0.6.1 (10 Mar 2017)
|
|
6
|
+
* 4627b56 - Explicit require of CGI class. (Tan Le, Thu Mar 9 17:01:37 2017 +1100)
|
|
7
|
+
* 26b6678 - Added colon support to matching rules path. (soundstep, Wed Mar 8 09:18:35 2017 +0000)
|
|
8
|
+
|
|
5
9
|
### 0.6.0 (14 Nov 2016)
|
|
6
10
|
* 64a9a37 - Enable interactions to validate themselves (Taiki Ono, Wed Nov 9 19:08:49 2016 +0900)
|
|
7
11
|
|
|
@@ -19,7 +19,7 @@ module Pact
|
|
|
19
19
|
@path << token
|
|
20
20
|
elsif token = scanner.scan(/@/)
|
|
21
21
|
@path << token
|
|
22
|
-
elsif token = scanner.scan(/[a-zA-Z0-9_-]+/)
|
|
22
|
+
elsif token = scanner.scan(/[:a-zA-Z0-9_-]+/)
|
|
23
23
|
@path << "['#{token}']"
|
|
24
24
|
elsif token = scanner.scan(/'(.*?)'/)
|
|
25
25
|
@path << "[#{token}]"
|
|
@@ -57,4 +57,3 @@ module Pact
|
|
|
57
57
|
end
|
|
58
58
|
end
|
|
59
59
|
end
|
|
60
|
-
|
data/lib/pact/support/version.rb
CHANGED
data/spec/spec_helper.rb
CHANGED
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
require 'rspec'
|
|
2
1
|
require 'fakefs/spec_helpers'
|
|
3
|
-
require 'rspec'
|
|
4
2
|
require 'pact/support'
|
|
5
3
|
require 'webmock/rspec'
|
|
6
4
|
require 'support/factories'
|
|
7
5
|
require 'support/spec_support'
|
|
8
6
|
|
|
9
|
-
|
|
10
7
|
WebMock.disable_net_connect!(allow_localhost: true)
|
|
11
8
|
|
|
12
9
|
require './spec/support/active_support_if_configured'
|
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: 0.6.
|
|
4
|
+
version: 0.6.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:
|
|
15
|
+
date: 2017-03-11 00:00:00.000000000 Z
|
|
16
16
|
dependencies:
|
|
17
17
|
- !ruby/object:Gem::Dependency
|
|
18
18
|
name: randexp
|