foobara-agent-backed-command 0.0.8 → 0.1.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/CHANGELOG.md +8 -0
- data/src/agent_backed_command.rb +3 -2
- metadata +18 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e006c1ff92610dd2baddc84d68ed7de997eba0c98f693db3bd0d2b979ca7e278
|
4
|
+
data.tar.gz: 9c7a6dc4a33b15f0c8930507ffaae01345efba5d7e5af8f2c15df2d8215ea5c8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 25ce38e778e6778053074d214b136166f9e274abb8ab6ddb9dfd8de29316a6b40dad48525b4a224fd7ed8db966e778ac533f05e65e45ca195f5c059922926087
|
7
|
+
data.tar.gz: 49888d6e16b95d713c4dd289371932da4c800929916593e92b23f39f0b52cf28ef5f5d822c1065095a4c5c17969c6c8d755f113e80a1b08c68f28279ef0fea0a
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,11 @@
|
|
1
|
+
## [0.1.1] - 2025-09-04
|
2
|
+
|
3
|
+
- Fix bug that results from not all namespaces supporting a #foobara_domain method
|
4
|
+
|
5
|
+
## [0.1.0] - 2025-08-22
|
6
|
+
|
7
|
+
- Handle Foobara 0.1.0 type declarations
|
8
|
+
|
1
9
|
## [0.0.8] - 2025-07-23
|
2
10
|
|
3
11
|
- Attempt to fix some regressions by reverting some construct goal changes
|
data/src/agent_backed_command.rb
CHANGED
@@ -168,7 +168,7 @@ module Foobara
|
|
168
168
|
if klass.is_a?(::Symbol)
|
169
169
|
real_class = Namespace.global.foobara_lookup_command(
|
170
170
|
klass,
|
171
|
-
mode: Namespace::LookupMode::
|
171
|
+
mode: Namespace::LookupMode::ABSOLUTE_SINGLE_NAMESPACE
|
172
172
|
)
|
173
173
|
|
174
174
|
if real_class
|
@@ -215,7 +215,8 @@ module Foobara
|
|
215
215
|
input_keys = inputs_type.element_types.keys - [:agent_options]
|
216
216
|
|
217
217
|
unless input_keys.empty?
|
218
|
-
domain = inputs_type.created_in_namespace
|
218
|
+
domain = Domain.to_domain(inputs_type.created_in_namespace)
|
219
|
+
|
219
220
|
inputs_type = TypeDeclarations::Attributes.reject(inputs_type.declaration_data, :agent_options)
|
220
221
|
inputs_type = domain.foobara_type_from_declaration(inputs_type)
|
221
222
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: foobara-agent-backed-command
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Miles Georgi
|
@@ -10,12 +10,12 @@ cert_chain: []
|
|
10
10
|
date: 1980-01-02 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
|
-
name: foobara
|
13
|
+
name: foobara
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|
15
15
|
requirements:
|
16
16
|
- - ">="
|
17
17
|
- !ruby/object:Gem::Version
|
18
|
-
version: 0.
|
18
|
+
version: 0.1.1
|
19
19
|
- - "<"
|
20
20
|
- !ruby/object:Gem::Version
|
21
21
|
version: 2.0.0
|
@@ -25,7 +25,21 @@ dependencies:
|
|
25
25
|
requirements:
|
26
26
|
- - ">="
|
27
27
|
- !ruby/object:Gem::Version
|
28
|
-
version: 0.
|
28
|
+
version: 0.1.1
|
29
|
+
- - "<"
|
30
|
+
- !ruby/object:Gem::Version
|
31
|
+
version: 2.0.0
|
32
|
+
- !ruby/object:Gem::Dependency
|
33
|
+
name: foobara-agent
|
34
|
+
requirement: !ruby/object:Gem::Requirement
|
35
|
+
requirements:
|
36
|
+
- - "<"
|
37
|
+
- !ruby/object:Gem::Version
|
38
|
+
version: 2.0.0
|
39
|
+
type: :runtime
|
40
|
+
prerelease: false
|
41
|
+
version_requirements: !ruby/object:Gem::Requirement
|
42
|
+
requirements:
|
29
43
|
- - "<"
|
30
44
|
- !ruby/object:Gem::Version
|
31
45
|
version: 2.0.0
|