Files
Mike Ryan b7f495decb feat(runtime-ruby): add native Intelligence SDK and Rack runtime
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.
2026-09-11 15:55:30 -07:00

51 lines
1.5 KiB
JSON

{
"name": "runtime-ruby",
"targets": {
"test-rack": {
"executor": "nx:run-commands",
"options": {
"command": "node tools/runtime-conformance/run.mjs --cwd packages/runtime-ruby -- bundle exec ruby examples/conformance.rb",
"cwd": "."
},
"cache": false,
"dependsOn": []
},
"test-rails": {
"executor": "nx:run-commands",
"options": {
"command": "node tools/runtime-conformance/run.mjs --cwd packages/runtime-ruby/examples/rails -- bundle exec ruby ../rails_conformance.rb",
"cwd": "."
},
"cache": false,
"dependsOn": []
},
"test": {
"executor": "nx:run-commands",
"options": {
"command": "ruby -Ilib -e 'Dir[\"test/*_test.rb\"].sort.each { |file| require File.expand_path(file) }'",
"cwd": "packages/runtime-ruby"
},
"cache": false,
"dependsOn": []
},
"lint": {
"executor": "nx:run-commands",
"options": {
"command": "ruby -e 'require \"rbconfig\"; abort unless Dir[\"{lib,examples,test}/**/*.rb\"].all? { |file| system(RbConfig.ruby, \"-c\", file) }'",
"cwd": "packages/runtime-ruby"
},
"cache": false,
"dependsOn": []
},
"build": {
"executor": "nx:run-commands",
"options": {
"command": "gem build copilotkit-runtime.gemspec --output /tmp/copilotkit-runtime.gem",
"cwd": "packages/runtime-ruby"
},
"cache": false,
"dependsOn": []
}
}
}