evt-schema 2.2.4.2 → 2.2.4.3
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/lib/schema/schema/compare/comparison.rb +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 92919dd39748e64208d54c479b92a089c07be405c676de01bb31c71a952f7397
|
|
4
|
+
data.tar.gz: 1e174dbaabc4825bc20fae54dd92e3035b9e32813fac33b7223c84f3c623cb12
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bf87a1c0634bbfdbb56bf38978e03aa42e50b247e4557b3a5dd2abfcab467cef3509bb07b15fa770497a41acaa7040c7e3b2422d76a6ed02c33f112b6d84a341
|
|
7
|
+
data.tar.gz: e4b31461c2dfa18968a5d3a0184afd3a259800ce9ff5deed77493a11cae7b3be00dc435966352ae955177aa1de715cbb2754f8d91eec7cda6150515b4d14b4fd
|
|
@@ -28,11 +28,11 @@ module Schema
|
|
|
28
28
|
|
|
29
29
|
def self.assure_schemas(control, compare)
|
|
30
30
|
if not control.is_a?(Schema)
|
|
31
|
-
raise Error, 'Control object is not an implementation of Schema'
|
|
31
|
+
raise Error, 'Control object is not an implementation of Schema (Control Class: #{control.class.name})'
|
|
32
32
|
end
|
|
33
33
|
|
|
34
34
|
if not compare.is_a?(Schema)
|
|
35
|
-
raise Error, 'Compare object is not an implementation of Schema'
|
|
35
|
+
raise Error, 'Compare object is not an implementation of Schema (Compare Class: #{compare.class.name})'
|
|
36
36
|
end
|
|
37
37
|
end
|
|
38
38
|
|