actionmcp 0.83.0 → 0.83.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: 78f8c65c494089838368555cda5818fcf8cb74f1c9ecf46e8e93d830efab878d
4
- data.tar.gz: c31e29bcaaf55f0f5dc662e144b859f22315cea77702bcda842cc03cb525eaa5
3
+ metadata.gz: 34a7a67e4f2e58c82a8a06bb11adf328747ed61a38e4c06598b21657556b8779
4
+ data.tar.gz: 0a81e9eaec25dc3906a9476fff4c9458da889fd201cb644b46ba1074ea46d5ad
5
5
  SHA512:
6
- metadata.gz: f582244915ed79650cb23424423d0bf80862f7d4a47ac0a563a830bc47b340cdaa3e2bc435934862fe16db6934b3328c633efb1130b4b5aa55a4e12ec12c94df
7
- data.tar.gz: 93d40e3def9b7c16abacc08c6f866a91f2f43669c746bd6a577323af3d1496cbfda1421a036f8638aed370aa444b62e3a9ed64232dfc1c975bed0687498d677d
6
+ metadata.gz: 76e455eefa6f0fb9c055d4a799ba38f09993c7562746733c05e15e8bc256df112e24788989dce2dbe0bfa290b77eedc54f89a480422a6805050bde18fbb51d2f
7
+ data.tar.gz: 8c2fb33e02738de33451097b92c743acf053bdd759be14380fd62a098153b59a925aa8b7f490908457835d9cdb5de903a07e6d1bfe0b741aebe6f28ce64185b5
@@ -2,7 +2,7 @@
2
2
 
3
3
  require_relative "gem_version"
4
4
  module ActionMCP
5
- VERSION = "0.83.0"
5
+ VERSION = "0.83.1"
6
6
 
7
7
  class << self
8
8
  alias version gem_version
@@ -49,6 +49,28 @@ namespace :action_mcp do
49
49
  puts "\n"
50
50
  end
51
51
 
52
+ # bin/rails action_mcp:list_profiles
53
+ desc "List all available profiles"
54
+ task list_profiles: :environment do
55
+ # Ensure Rails eager loads all classes
56
+ Rails.application.eager_load!
57
+
58
+ puts "\e[35mACTION MCP PROFILES\e[0m" # Purple
59
+ puts "\e[35m-------------------\e[0m" # Purple
60
+
61
+ profiles = ActionMCP.configuration.profiles
62
+
63
+ if profiles.any?
64
+ profiles.each_key do |profile_name|
65
+ puts "\e[35m#{profile_name}\e[0m"
66
+ end
67
+ else
68
+ puts " No profiles configured"
69
+ end
70
+
71
+ puts "\n"
72
+ end
73
+
52
74
  # bin/rails action_mcp:show_profile[profile_name]
53
75
  desc "Show configuration for a specific profile"
54
76
  task :show_profile, [ :profile_name ] => :environment do |_t, args|
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.0
4
+ version: 0.83.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Abdelkader Boudih