pact-support 1.12.1 → 1.13.0
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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c50b1966502c423ba346bd03b9d812b5ba93b7ab
|
4
|
+
data.tar.gz: 9f6ffbd0645c74e5c64f97917e57970d87e52735
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8ff872db398c3abc1c69533e0cf08a7ff2d26abcef145555078246c504661067ce101f8b161e92fb9aba0847c0f78871186608c235b10a1cdcfd573ff4783e2c
|
7
|
+
data.tar.gz: ed538859061709631e5ce1ba0bd214cdbcb840a80afcf03064166464d15e17d63cf807500f0e5429e3d876a13c4b5e9bb00f3012b18042736340b9ba4b8a1947
|
data/CHANGELOG.md
CHANGED
@@ -13,7 +13,7 @@ module Pact
|
|
13
13
|
Pact.configuration.error_stream.puts "WARN: This code only knows how to parse v3 pacts, attempting to parse v#{options[:pact_specification_version]} pact using v3 code."
|
14
14
|
end
|
15
15
|
|
16
|
-
interactions = hash[:interactions].collect { |hash| Interaction.from_hash(hash, options) }
|
16
|
+
interactions = hash[:interactions].each_with_index.collect { |hash, index| Interaction.from_hash({ index: index }.merge(hash), options) }
|
17
17
|
ConsumerContract.new(
|
18
18
|
:consumer => ServiceConsumer.from_hash(hash[:consumer]),
|
19
19
|
:provider => ServiceProvider.from_hash(hash[:provider]),
|
@@ -5,7 +5,7 @@ module Pact
|
|
5
5
|
class Interaction
|
6
6
|
include ActiveSupportSupport
|
7
7
|
|
8
|
-
attr_accessor :description, :request, :response, :provider_state, :provider_states, :metadata, :_id
|
8
|
+
attr_accessor :description, :request, :response, :provider_state, :provider_states, :metadata, :_id, :index
|
9
9
|
|
10
10
|
def initialize attributes = {}
|
11
11
|
@description = attributes[:description]
|
@@ -15,6 +15,7 @@ module Pact
|
|
15
15
|
@provider_states = attributes[:provider_states]
|
16
16
|
@metadata = attributes[:metadata]
|
17
17
|
@_id = attributes[:_id]
|
18
|
+
@index = attributes[:index]
|
18
19
|
end
|
19
20
|
|
20
21
|
def self.from_hash hash, options = {}
|
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.
|
4
|
+
version: 1.13.0
|
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: 2020-01-
|
15
|
+
date: 2020-01-24 00:00:00.000000000 Z
|
16
16
|
dependencies:
|
17
17
|
- !ruby/object:Gem::Dependency
|
18
18
|
name: randexp
|