rbbt-rest 2.0.0 → 2.0.1
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/share/views/partials/form.haml +3 -2
- data/share/views/wait.haml +7 -4
- 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: ab725b9efe357fae2cbfa7a394294e6805b917333fa483c9922c5fc919a10de2
|
|
4
|
+
data.tar.gz: d95e2246db21f6e393d082800b057a3fda36225985f674e8e5a4f7af47077c18
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 985a8feb205260424a6d61dfc49857813aa431d359a99f995b1e522794bb8add13801555f5b67844bbf9666f38f6cf19ffa528df09b65e378276ace6b1e63d93
|
|
7
|
+
data.tar.gz: e7d051bafe77a25f92eee6c24701fbf22795de5139d56f4f6c7a5dc960f38921f8da8b105ec67f66e159c5db87795268238df8caed1830884702ab1741629a2b
|
|
@@ -69,13 +69,14 @@
|
|
|
69
69
|
- description = descriptions[input]
|
|
70
70
|
- if use[input] && description
|
|
71
71
|
- description += "\n\nUsed in:\n"
|
|
72
|
+
- use_codes = []
|
|
72
73
|
- uses.each do |workflow, tasks|
|
|
73
74
|
- tasks.each do |task|
|
|
74
|
-
-
|
|
75
|
+
- use_codes << [workflow.to_s, task] * "#"
|
|
76
|
+
- description << use_codes.uniq.collect{|c| "* " + c} * "\n"
|
|
75
77
|
- value = values[input].nil? ? locals[input] : values[input]
|
|
76
78
|
!~ form_input(input, types[input], defaults[input], value, description, input_id, input_options)
|
|
77
79
|
|
|
78
|
-
|
|
79
80
|
- if bundle && inputs.any?
|
|
80
81
|
.bundle.ui.very.basic.segment.field
|
|
81
82
|
Input file bundle in tar.gz (overrides page inputs)
|
data/share/views/wait.haml
CHANGED
|
@@ -111,7 +111,10 @@
|
|
|
111
111
|
|
|
112
112
|
- if job.dependencies && job.dependencies.any?
|
|
113
113
|
|
|
114
|
-
.
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
114
|
+
- if job.rec_dependencies.length > 20
|
|
115
|
+
Too many dependencies to list
|
|
116
|
+
- else
|
|
117
|
+
.ui.segment
|
|
118
|
+
%h3.ui.header Dependencies
|
|
119
|
+
.content
|
|
120
|
+
= partial_render('partials/dependencies', :job => job)
|