actionmcp 0.5.0 → 0.5.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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2a6e51c000b677de70fd80f03788ba8334fc9e65bf7ad9344aea0bab75aebbdf
|
4
|
+
data.tar.gz: 3205256c52a5bf43316ac17c1c50634df3afb138c72b68994db071ac8a15722f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: af4c15acb851edb2906b9a6b164ed0abf54bb2cb2ad96752c907779f51d805c7a8835775e569b367341fa1d219a74581283680876fc261ab179ce782d5fc677f
|
7
|
+
data.tar.gz: fc5953ed45ceeea4ae7038134bea63b6fee0ed36e90bb9f3bd1b1bdb6397f6a3ac7e5875f85f458fae4155135405e481f78c24df37d63a5b565bdc2d40e0706e
|
@@ -10,7 +10,6 @@ module ActionMCP
|
|
10
10
|
|
11
11
|
class_attribute :_capability_name, instance_accessor: false
|
12
12
|
class_attribute :_description, instance_accessor: false, default: ""
|
13
|
-
class_attribute :abstract_tool, instance_accessor: false, default: false
|
14
13
|
|
15
14
|
# use _capability_name or default_capability_name
|
16
15
|
def self.capability_name
|
@@ -2,10 +2,20 @@
|
|
2
2
|
|
3
3
|
module ActionMCP
|
4
4
|
class ResourceTemplate
|
5
|
-
class_attribute :abstract, instance_accessor: false, default: false
|
6
|
-
|
7
5
|
class << self
|
8
|
-
|
6
|
+
def abstract?
|
7
|
+
@abstract ||= false
|
8
|
+
end
|
9
|
+
|
10
|
+
def abstract!
|
11
|
+
@abstract = true
|
12
|
+
end
|
13
|
+
|
14
|
+
def inherited(subclass)
|
15
|
+
super
|
16
|
+
subclass.instance_variable_set(:@abstract, false)
|
17
|
+
end
|
18
|
+
|
9
19
|
attr_reader :description, :uri_template, :mime_type, :template_name, :parameters
|
10
20
|
|
11
21
|
def parameter(name, description:, required: false)
|
@@ -48,14 +58,6 @@ module ActionMCP
|
|
48
58
|
raise NotImplementedError, "Subclasses must implement the retrieve method"
|
49
59
|
end
|
50
60
|
|
51
|
-
def abstract?
|
52
|
-
abstract
|
53
|
-
end
|
54
|
-
|
55
|
-
def abstract!
|
56
|
-
self.abstract = true
|
57
|
-
end
|
58
|
-
|
59
61
|
def capability_name
|
60
62
|
name.demodulize.underscore.sub(/_template$/, "")
|
61
63
|
end
|
data/lib/action_mcp/version.rb
CHANGED