-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy patharcp.gemspec
More file actions
46 lines (39 loc) · 1.6 KB
/
arcp.gemspec
File metadata and controls
46 lines (39 loc) · 1.6 KB
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# frozen_string_literal: true
require_relative 'lib/arcp/version'
Gem::Specification.new do |spec|
spec.name = 'arcp'
spec.version = Arcp::VERSION
spec.authors = ['ARCP Authors']
spec.email = ['arcp-authors@users.noreply.github.com']
spec.summary = 'Reference Ruby implementation of the Agent Runtime Control Protocol (ARCP).'
spec.description = <<~DESC
Ruby SDK for ARCP: envelope and message model, fiber-based runtime, client,
WebSocket / stdio / in-memory transports, SQLite-backed resume log,
capability negotiation, leases with budget and expiration, streamed results,
and OpenTelemetry trace propagation. Built on socketry/async.
DESC
spec.homepage = 'https://github.com/nficano/arpc'
spec.license = 'Apache-2.0'
spec.required_ruby_version = '>= 3.3.0'
spec.metadata['changelog_uri'] = "#{spec.homepage}/blob/main/ruby-sdk/CHANGELOG.md"
spec.metadata['source_code_uri'] = 'https://github.com/nficano/arpc.git'
spec.metadata['bug_tracker_uri'] = "#{spec.homepage}/issues"
spec.metadata['rubygems_mfa_required'] = 'true'
spec.files = Dir[
'lib/**/*.rb',
'lib/**/*.sql',
'sig/**/*.rbs',
'README.md',
'CONFORMANCE.md',
'CHANGELOG.md',
'LICENSE'
]
spec.require_paths = ['lib']
spec.add_dependency 'async', '~> 2.20'
spec.add_dependency 'async-http', '~> 0.86'
spec.add_dependency 'async-websocket', '~> 0.30'
spec.add_dependency 'bigdecimal', '~> 3.1'
spec.add_dependency 'logger', '~> 1.6'
spec.add_dependency 'opentelemetry-api', '~> 1.5'
spec.add_dependency 'sqlite3', '~> 2.0'
end