mirror of
https://github.com/CopilotKit/CopilotKit.git
synced 2026-09-14 16:26:20 +08:00
b7f495decb
Provide native Intelligence SDK operations and runtime routes with application-owned identity, durable runs, A2UI, MCP Apps, entitlements, Inspector metadata, and telemetry. Include package docs, hosting examples, and regression tests.
15 lines
531 B
Ruby
15 lines
531 B
Ruby
# frozen_string_literal: true
|
|
Gem::Specification.new do |spec|
|
|
spec.name = 'copilotkit-runtime'
|
|
spec.version = '0.1.0'
|
|
spec.summary = 'Native Intelligence runtime for Ruby Rack applications'
|
|
spec.authors = ['CopilotKit']
|
|
spec.license = 'MIT'
|
|
spec.required_ruby_version = '>= 2.7'
|
|
spec.files = Dir['lib/**/*.rb', 'README.md', 'LICENSE']
|
|
spec.require_paths = ['lib']
|
|
spec.homepage = 'https://github.com/CopilotKit/CopilotKit'
|
|
spec.add_dependency 'base64', '~> 0.2'
|
|
spec.add_dependency 'websocket', '~> 1.2'
|
|
end
|