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: a8c8a94933ac8bd63140d48502c583f501779e7e5cdfa60f3d5dbaa095336865
4
- data.tar.gz: 714a7e9f4ed1b7db0fa3814bc270be7b0f9fe075ecde6fc2a44d435df3a88e03
3
+ metadata.gz: 2a6e51c000b677de70fd80f03788ba8334fc9e65bf7ad9344aea0bab75aebbdf
4
+ data.tar.gz: 3205256c52a5bf43316ac17c1c50634df3afb138c72b68994db071ac8a15722f
5
5
  SHA512:
6
- metadata.gz: d7f572402551c7e210f81e9f0dbe7eef5f7344ab17227e4d0b7957329d0442aa11a6d5fe75479c0c65919dbe429e12f6bcb0f0a056c0f1009efcd5d3ade2472c
7
- data.tar.gz: 38f6ed89c283df6d4c969b8f5efb88f32e459d8277e813061ef35b92a32de2ecc931abb73c8e1025714acfba455706d6e29d386ffbb3e007593791c0edc9de02
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
- attr_writer :abstract
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
@@ -2,7 +2,7 @@
2
2
 
3
3
  require_relative "gem_version"
4
4
  module ActionMCP
5
- VERSION = "0.5.0"
5
+ VERSION = "0.5.1"
6
6
 
7
7
  class << self
8
8
  alias version gem_version
@@ -1,3 +1,3 @@
1
- class MCPResourceTemplate < ActionMcp::ResourceTemplate
1
+ class MCPResourceTemplate < ActionMCP::ResourceTemplate
2
2
  abstract!
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: actionmcp
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.0
4
+ version: 0.5.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Abdelkader Boudih