-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathasync-cable.gemspec
More file actions
32 lines (23 loc) · 975 Bytes
/
async-cable.gemspec
File metadata and controls
32 lines (23 loc) · 975 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
29
30
31
32
# frozen_string_literal: true
require_relative "lib/async/cable/version"
Gem::Specification.new do |spec|
spec.name = "async-cable"
spec.version = Async::Cable::VERSION
spec.summary = "An asynchronous adapter for ActionCable."
spec.authors = ["Samuel Williams"]
spec.license = "MIT"
spec.cert_chain = ["release.cert"]
spec.signing_key = File.expand_path("~/.gem/release.pem")
spec.homepage = "https://github.com/socketry/async-cable"
spec.metadata = {
"documentation_uri" => "https://socketry.github.io/async-cable/",
"source_code_uri" => "https://github.com/socketry/async-cable",
}
spec.files = Dir["{lib}/**/*", "*.md", base: __dir__]
spec.required_ruby_version = ">= 3.3"
# Requires the `ActionCable::Server::Socket` abstraction introduced by
# https://github.com/rails/rails/pull/50979 (Rails 8.1+).
spec.add_dependency "actioncable", ">= 8.1.0.alpha"
spec.add_dependency "async", "~> 2.9"
spec.add_dependency "async-websocket"
end