actionmcp 0.83.2 → 0.83.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7a91639193cbd4c38f5bd9ca6932c7368a4fc6c23b6b09252900a7f456c0d937
4
- data.tar.gz: 695b569c3dc9629a7927e658eba3a4f22be69d1c0d416edf973818541b47ee34
3
+ metadata.gz: 07c0477f4e98cef701c55861a54b06530246aa72aa7e4cb573fbf2d523c0ae54
4
+ data.tar.gz: 9bdff393572212ee32d0430ba2887292f35b0489a0753399a27a5f7a16aa3fac
5
5
  SHA512:
6
- metadata.gz: de97090f3157012ed6038d3b071a6b7977fab5b50c1e72f2bdb0b5e5c849e61e014c86412f8d36731ce691d230dd250ed3891d15adfd370c7851e7732cc4bab4
7
- data.tar.gz: f3d4b289c41574a7686c5dff431b0339034cd2ac40dd0570144bfddd08f36595663174d272341fc97504fc02851e45b1e6142fe5c84c2d43ad8bbeb4fc386348
6
+ metadata.gz: d84067880b719178839887ec9aed55236486a1b8ed60859d1885303ac71b83525c3a52ee4c9267cf1b84044f467668b2a05ec06485d31666d0057838ab789b3a
7
+ data.tar.gz: b4f687ea0485632c75670c64c9d8953cc340fc45ed774993a0ce2c661c30e05e5429047fb30146c6450e66e1b72ea2be6aae8977127e9cdbedb50e5b578186fd
@@ -140,7 +140,7 @@ module ActionMCP
140
140
  app_profiles = app_profiles.deep_symbolize_keys
141
141
  end
142
142
 
143
- Rails.logger.debug "[Configuration] Merging profiles: #{app_profiles.inspect}"
143
+ Rails.logger.debug "[Configuration] Merging profiles: #{app_profiles.inspect}" if @verbose_logging
144
144
  @profiles = @profiles.deep_merge(app_profiles)
145
145
  end
146
146
  rescue StandardError => e
@@ -150,8 +150,8 @@ module ActionMCP
150
150
  end
151
151
 
152
152
  # Apply the active profile
153
- Rails.logger.info "[ActionMCP] Loaded profiles: #{@profiles.keys.join(', ')}"
154
- Rails.logger.info "[ActionMCP] Using profile: #{@active_profile}"
153
+ Rails.logger.info "[ActionMCP] Loaded profiles: #{@profiles.keys.join(', ')}" if @verbose_logging
154
+ Rails.logger.info "[ActionMCP] Using profile: #{@active_profile}" if @verbose_logging
155
155
  use_profile(@active_profile)
156
156
 
157
157
  # Restore preserved settings
@@ -29,7 +29,7 @@ module ActionMCP
29
29
  def self.default_prompt_name
30
30
  return "" if name.nil?
31
31
 
32
- name.demodulize.underscore.sub(/_prompt$/, "")
32
+ name.underscore.gsub("/", "__").sub(/_prompt$/, "")
33
33
  end
34
34
 
35
35
  class << self
@@ -51,7 +51,7 @@ module ActionMCP
51
51
  def self.default_tool_name
52
52
  return "" if name.nil?
53
53
 
54
- name.demodulize.underscore.sub(/_tool$/, "")
54
+ name.underscore.gsub("/", "__").sub(/_tool$/, "")
55
55
  end
56
56
 
57
57
  class << self
@@ -2,7 +2,7 @@
2
2
 
3
3
  require_relative "gem_version"
4
4
  module ActionMCP
5
- VERSION = "0.83.2"
5
+ VERSION = "0.83.4"
6
6
 
7
7
  class << self
8
8
  alias version gem_version
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.83.2
4
+ version: 0.83.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Abdelkader Boudih