quby-compiler 0.4.6 → 0.4.7
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/quby/compiler/services/quby_proxy.rb +6 -0
- data/lib/quby/compiler/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7f3028be16a77f8fbf5f30b7abfb04839a2a501c4e829bda046a415723beafd4
|
4
|
+
data.tar.gz: d682aa3b84a73c5b2f3e41f90c82c0e20fbcb431149be21b6136416ddfa827d8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 91673fe9c11612f9c9dba10ab129217942d388830423550376f36972250643660eca53af578183c77d924aee9db44587b4ee4ec19e3e66d445a91367a6df7cff
|
7
|
+
data.tar.gz: 19d1703844eb8a809f68b8a4634af28d97f627a42b575cdb468737dc43b87fda0351ef875edb0c21e70483aaec84d2362256b38c531840f64c9820d7ba69efa6
|
data/CHANGELOG.md
CHANGED
@@ -59,6 +59,9 @@ module Quby
|
|
59
59
|
values = [value, value.to_s].uniq
|
60
60
|
handle_subquestions(question, question_titles, d_qtypes, vars, option, values, option.key.to_s)
|
61
61
|
end
|
62
|
+
if question.title_question
|
63
|
+
subquestion(question, question_titles, d_qtypes, vars, question.title_question, nil, nil)
|
64
|
+
end
|
62
65
|
update_hidden_questions_for(question, for_checkbox: true)
|
63
66
|
when :textarea
|
64
67
|
d_qtypes[question.key.to_s] = { type: :text_field }
|
@@ -280,6 +283,9 @@ module Quby
|
|
280
283
|
key = question.key.to_s
|
281
284
|
handle_subquestions(question, quests, d_qtypes, vars, option, [option.value.to_s], key)
|
282
285
|
end
|
286
|
+
if question.title_question
|
287
|
+
subquestion(question, quests, d_qtypes, vars, question.title_question, nil, nil)
|
288
|
+
end
|
283
289
|
end
|
284
290
|
|
285
291
|
def handle_textfield(question, d_qtypes)
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: quby-compiler
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.4.
|
4
|
+
version: 0.4.7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Marten Veldthuis
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-02-
|
11
|
+
date: 2022-02-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activemodel
|