-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
async-websocket.gemspec
32 lines (23 loc) · 1.23 KB
/
async-websocket.gemspec
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
# frozen_string_literal: true
require_relative "lib/async/websocket/version"
Gem::Specification.new do |spec|
spec.name = "async-websocket"
spec.version = Async::WebSocket::VERSION
spec.summary = "An async websocket library on top of protocol-websocket."
spec.authors = ["Samuel Williams", "Simon Crocker", "Olle Jonsson", "Thomas Morgan", "Aurora Nockert", "Bryan Powell", "Emily Love Mills", "Gleb Sinyavskiy", "Janko Marohnić", "Juan Antonio Martín Lucas", "Michel Boaventura", "Peter Runich", "Ryu Sato"]
spec.license = "MIT"
spec.cert_chain = ["release.cert"]
spec.signing_key = File.expand_path("~/.gem/release.pem")
spec.homepage = "https://github.com/socketry/async-websocket"
spec.metadata = {
"documentation_uri" => "https://socketry.github.io/async-websocket/",
"funding_uri" => "https://github.com/sponsors/ioquatix",
"source_code_uri" => "https://github.com/socketry/async-websocket.git",
}
spec.files = Dir.glob(["{lib}/**/*", "*.md"], File::FNM_DOTMATCH, base: __dir__)
spec.required_ruby_version = ">= 3.1"
spec.add_dependency "async-http", "~> 0.76"
spec.add_dependency "protocol-http", "~> 0.34"
spec.add_dependency "protocol-rack", "~> 0.7"
spec.add_dependency "protocol-websocket", "~> 0.17"
end