-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprotocol-http-executor.gemspec
More file actions
28 lines (20 loc) · 1010 Bytes
/
Copy pathprotocol-http-executor.gemspec
File metadata and controls
28 lines (20 loc) · 1010 Bytes
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
# frozen_string_literal: true
require_relative "lib/protocol/http/executor/version"
Gem::Specification.new do |spec|
spec.name = "protocol-http-executor"
spec.version = Protocol::HTTP::Executor::VERSION
spec.summary = "Execute Protocol::HTTP applications across isolated execution contexts."
spec.authors = ["Samuel Williams"]
spec.license = "MIT"
spec.homepage = "https://github.com/socketry/protocol-http-executor"
spec.metadata = {
"bug_tracker_uri" => "https://github.com/socketry/protocol-http-executor/issues",
"changelog_uri" => "https://github.com/socketry/protocol-http-executor/blob/main/releases.md",
"documentation_uri" => "https://socketry.github.io/protocol-http-executor/",
"source_code_uri" => "https://github.com/socketry/protocol-http-executor.git",
}
spec.files = Dir.glob(["{context,lib}/**/*", "*.md"], File::FNM_DOTMATCH, base: __dir__)
spec.required_ruby_version = ">= 3.3"
spec.add_dependency "async"
spec.add_dependency "protocol-http", "~> 0.70"
end