-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathagent_gateway.gemspec
More file actions
21 lines (16 loc) · 862 Bytes
/
Copy pathagent_gateway.gemspec
File metadata and controls
21 lines (16 loc) · 862 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
require_relative "lib/agent_gateway/version"
Gem::Specification.new do |spec|
spec.name = "agent_gateway"
spec.version = AgentGateway::VERSION
spec.authors = ["Jesse Waites"]
spec.email = ["jesse@example.com"]
spec.summary = "Rails engine exposing app data as a single AI-agent-friendly JSON endpoint"
spec.description = "A mountable Rails engine that provides a configured, authenticated JSON briefing endpoint for AI agents to consume app data."
spec.homepage = "https://github.com/jessewaites/agent_gateway"
spec.license = "MIT"
spec.required_ruby_version = ">= 3.0"
spec.files = Dir["lib/**/*", "app/**/*", "config/**/*", "LICENSE", "README.md", "lando.jpeg"]
spec.require_paths = ["lib"]
spec.add_dependency "railties", ">= 7.0"
spec.add_dependency "activerecord", ">= 7.0"
end