foobara 0.0.3 → 0.0.4
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/projects/command_connectors_http/src/http/commands/help/presenter.rb +16 -0
- 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: 467a360223436ef05ee0657bdcfbe8b6f8e855fe13a5af8f16d1fc9ef5d3b8e1
|
4
|
+
data.tar.gz: 3dcf54e84bd89483b9130d3c6093e1e14908c284904032fdb1c3011c7ca02dfb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b58b221f4cfbc3407bcf2098049f9a00e8cc50b9ba97f03ac0c7f50e7e851f44096f98183a5d1e1805559df2ed10cabbc731002eec3ce5bd492db97656fa167e
|
7
|
+
data.tar.gz: 813912a5fe4b4aed472f4cf4dc51724e650595b128c422bacb7f6592ab08e319b9d8977b3474df048833f4a5847d037cef6013d498bfe722507e1e313221f361
|
data/CHANGELOG.md
CHANGED
@@ -103,6 +103,22 @@ module Foobara
|
|
103
103
|
html << "</li>"
|
104
104
|
end
|
105
105
|
html << "</ul>" unless skip_wrapper
|
106
|
+
when Manifest::Array
|
107
|
+
html << "<ul>" unless skip_wrapper
|
108
|
+
data.relevant_manifest.each_pair do |key, value|
|
109
|
+
next if key == :element_type_declaration
|
110
|
+
|
111
|
+
if key.to_s == "type"
|
112
|
+
value = root_manifest.lookup_path(key, value)
|
113
|
+
end
|
114
|
+
html << "<li>#{key}"
|
115
|
+
html << "<ul>"
|
116
|
+
html << render_html_list(value, skip_wrapper: true)
|
117
|
+
html << "</ul>"
|
118
|
+
html << "</li>"
|
119
|
+
end
|
120
|
+
html << render_html_list({ element_type: data.element_type }, skip_wrapper: true)
|
121
|
+
html << "</ul>" unless skip_wrapper
|
106
122
|
when Manifest::TypeDeclaration
|
107
123
|
html << "<ul>" unless skip_wrapper
|
108
124
|
data.relevant_manifest.each_pair do |key, value|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: foobara
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Miles Georgi
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-08-
|
11
|
+
date: 2024-08-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: foobara-util
|