-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathroda-websockets.gemspec
More file actions
30 lines (21 loc) · 894 Bytes
/
roda-websockets.gemspec
File metadata and controls
30 lines (21 loc) · 894 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
# frozen_string_literal: true
require_relative "lib/roda/websockets/version"
Gem::Specification.new do |spec|
spec.name = "roda-websockets"
spec.version = Roda::WebSockets::VERSION
spec.summary = "WebSocket integration for Roda"
spec.authors = ["Shannon Skipper", "Jeffrey Lim", "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/roda-websockets"
spec.metadata = {
"documentation_uri" => "https://socketry.github.io/roda-websockets/",
"source_code_uri" => "https://github.com/socketry/roda-websockets.git",
}
spec.files = Dir['{lib}/**/*', '*.md', base: __dir__]
spec.required_ruby_version = ">= 3.1"
spec.add_dependency "async-websocket", "~> 0.12"
spec.add_dependency "falcon", "~> 0.33"
spec.add_dependency "roda", "~> 3.0"
end