-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patharcp.gemspec
More file actions
50 lines (43 loc) · 1.64 KB
/
arcp.gemspec
File metadata and controls
50 lines (43 loc) · 1.64 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
47
48
49
50
# frozen_string_literal: true
require_relative 'lib/arcp/version'
Gem::Specification.new do |spec|
spec.name = 'arcp'
spec.version = Arcp::IMPL_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
A reference Ruby implementation of ARCP v#{Arcp::PROTOCOL_VERSION}: an envelope and
message model, a fiber-based runtime, a client, WebSocket and stdio transports,
a SQLite-backed event log, and a CLI. Built on the async gem.
DESC
spec.homepage = 'https://github.com/nficano/arpc'
spec.license = 'Apache-2.0'
spec.required_ruby_version = '>= 3.4.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',
'exe/*',
'README.md',
'CONFORMANCE.md',
'RFC-0001-v2.md',
'PLAN.md',
'CHANGELOG.md',
'LICENSE'
]
spec.require_paths = ['lib']
spec.bindir = 'exe'
spec.executables = ['arcp']
spec.add_dependency 'async', '~> 2.0'
spec.add_dependency 'async-websocket', '~> 0.30'
spec.add_dependency 'dry-cli', '~> 1.0'
spec.add_dependency 'json_schemer', '~> 2.0'
spec.add_dependency 'jwt', '~> 2.0'
spec.add_dependency 'logger', '~> 1.6'
spec.add_dependency 'sqlite3', '~> 2.0'
end