specguard-ruby 0.3.1 → 0.3.2
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/specguard/rspec/validator_backend.rb +7 -1
- data/lib/specguard/version.rb +1 -1
- 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: 584f468fbf950cc9b0970956d1603b597411f7b6eeab92fab55efb903eb5237a
|
|
4
|
+
data.tar.gz: 4eb37d92b982f94ed984ab2e1616b9d37819aac6d9825c8c3f7514770f9c9355
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0ef4a77f33cfcc024e61112c868e56ca5e386f77165ffecdf65465f7d58bbd4aaf21bf6d2820557bbf26c94964ad47695c529e450e1f441f90576b3f92dc5473
|
|
7
|
+
data.tar.gz: d820d5b94bc60218724f7a094975405404e830183180e748ee283ff0c55bba9e47b2306eb9c7aac92709d37b44ec48c73251629f0ff33a1f8d542cadf1589b37
|
|
@@ -378,7 +378,13 @@ module SpecGuard
|
|
|
378
378
|
# which validator validated a CI job must not change because somebody
|
|
379
379
|
# published a new release, and {Runner#verify_schema_contract!} pins
|
|
380
380
|
# the fetched binary to this gem's vendored schema anyway.
|
|
381
|
-
|
|
381
|
+
# v0.1.4 is the first release whose JSON findings carry `intent` on
|
|
382
|
+
# passing rows; v0.1.3 validated the same schema but reported no payload,
|
|
383
|
+
# which the formatter's mapping reads as "unannotated" — every annotation
|
|
384
|
+
# silently dropped while the verdicts stayed green (found via
|
|
385
|
+
# yatfa-ai/specguard's CI reporting 0.0% annotated after its lock jumped
|
|
386
|
+
# 0.2.3 -> 0.3.1 and the SPGD-867 binary cutover ran for real).
|
|
387
|
+
RELEASE_TAG = "v0.1.4"
|
|
382
388
|
REPOSITORY = "yatfa-ai/open-test-intent"
|
|
383
389
|
DOWNLOAD_BASE = "https://github.com/#{REPOSITORY}/releases/download/#{RELEASE_TAG}"
|
|
384
390
|
|
data/lib/specguard/version.rb
CHANGED