quby-compiler 0.6.4 → 0.6.5
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/quby/compiler/services/definition_validator.rb +2 -2
- data/lib/quby/compiler/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: a3a0e71ca3c1110d28db3bcedb2e61c335fab0460ccb4855b217e8268d19ca16
|
|
4
|
+
data.tar.gz: d091545bbb7eda297678b5352067b75dd5af1a6b00d850ffd6d27ae4789e5f85
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: de9c43f71a64feb71bb3afba79e50d7284f4b6202395ac8e7167ee9e093af0db10afd9f3ce676ee8a2f2bf95806935ad8b4426739c4676fe90a0149bb4552309
|
|
7
|
+
data.tar.gz: a6176b0e5a8f2570dbc022131739ae14de775e502f77561969f547d567cd29e5ba46e4d4c2dce8e0279e85d8b496fda580298abb37a60256ed0f587858642623
|
data/CHANGELOG.md
CHANGED
|
@@ -401,9 +401,9 @@ scores_schema tables to the resulting seed."
|
|
|
401
401
|
return unless questionnaire.check_checkbox_options_start_with_question_key
|
|
402
402
|
|
|
403
403
|
question.options.each do |option|
|
|
404
|
-
next if option.key.to_s.start_with?(question.key.to_s)
|
|
404
|
+
next if option.inner_title || option.key.to_s.start_with?(question.key.to_s)
|
|
405
405
|
|
|
406
|
-
fail "Question
|
|
406
|
+
fail "Question :#{question.key} has an invalid option key :#{option.key}"
|
|
407
407
|
end
|
|
408
408
|
end
|
|
409
409
|
|