lacerda 0.14.1 → 0.14.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.ruby-version +1 -1
- data/CHANGELOG.markdown +4 -0
- data/lib/lacerda/compare/json_schema.rb +2 -2
- data/lib/lacerda/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: 84b9f409e21598d3679266a9195f9f0ab4067903
|
4
|
+
data.tar.gz: 383463e0faf1b456f810ab9f16c0193ed210ea06
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f4385a9a6af721d743c2feace10086a6e6d57acba4a69dd79dc93c00285dc51152b47476df846fe2624f266803e81aa749304ad02085e1f87aaa66c98c690a56
|
7
|
+
data.tar.gz: 48500d3fbbb716afbddf75b3adecb81cdcbe7d0eee117f065e7339a95f7f8054859c1308fec03e3eb70c5ca3db584d1ee002fda71f6d6ad5da96cc0e31e5ecec
|
data/.ruby-version
CHANGED
@@ -1 +1 @@
|
|
1
|
-
2.3.
|
1
|
+
2.3.1
|
data/CHANGELOG.markdown
CHANGED
@@ -53,9 +53,9 @@ module Lacerda
|
|
53
53
|
|
54
54
|
# 1)
|
55
55
|
if consume['type'] and publish['type']
|
56
|
-
consume_types = ([consume['type']].flatten
|
56
|
+
consume_types = ([consume['type']].flatten).sort
|
57
57
|
publish_types = [publish['type']].flatten.sort
|
58
|
-
if
|
58
|
+
if !(publish_types - consume_types).blank?
|
59
59
|
return _e(:ERR_TYPE_MISMATCH, location, "Consume types #{consume_types.to_json} not compatible with publish types #{publish_types.to_json}")
|
60
60
|
end
|
61
61
|
|
data/lib/lacerda/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: lacerda
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.14.
|
4
|
+
version: 0.14.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jannis Hermanns
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-06-
|
11
|
+
date: 2016-06-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|
@@ -281,7 +281,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
281
281
|
version: '0'
|
282
282
|
requirements: []
|
283
283
|
rubyforge_project:
|
284
|
-
rubygems_version: 2.
|
284
|
+
rubygems_version: 2.5.1
|
285
285
|
signing_key:
|
286
286
|
specification_version: 4
|
287
287
|
summary: Markdown publish/consume contract parser and validator
|