forked from betacraft/active_admin_mcp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathactive_admin_mcp.gemspec
More file actions
27 lines (21 loc) · 893 Bytes
/
active_admin_mcp.gemspec
File metadata and controls
27 lines (21 loc) · 893 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# frozen_string_literal: true
require_relative "lib/active_admin_mcp/version"
Gem::Specification.new do |spec|
spec.name = "active_admin_mcp"
spec.version = ActiveAdminMcp::VERSION
spec.authors = ["harunkumars"]
spec.email = ["harun@betacraft.io"]
spec.summary = "MCP server for Rails apps with ActiveAdmin"
spec.description = "Expose your ActiveAdmin resources to AI assistants via the Model Context Protocol (MCP)."
spec.homepage = "https://github.com/harunkumars/active_admin_mcp"
spec.license = "MIT"
spec.required_ruby_version = ">= 3.0.0"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = spec.homepage
spec.files = Dir.chdir(__dir__) do
Dir["{app,config,lib}/**/*", "LICENSE.txt", "README.md"]
end
spec.require_paths = ["lib"]
spec.add_dependency "rails", ">= 6.1"
spec.add_dependency "activeadmin", ">= 2.0"
end