forked from anycable/anycable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
anycable.gemspec
32 lines (26 loc) · 1.13 KB
/
anycable.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/anycable/version"
Gem::Specification.new do |spec|
spec.name = "anycable"
spec.version = AnyCable::VERSION
spec.authors = ["palkan"]
spec.email = ["dementiev.vm@gmail.com"]
spec.summary = "AnyCable is a polyglot replacement for ActionCable-compatible servers"
spec.description = "AnyCable is a polyglot replacement for ActionCable-compatible servers"
spec.homepage = "http://github.com/anycable/anycable"
spec.license = "MIT"
spec.metadata = {
"bug_tracker_uri" => "http://github.com/anycable/anycable/issues",
"changelog_uri" => "https://github.com/anycable/anycable/blob/master/CHANGELOG.md",
"documentation_uri" => "https://docs.anycable.io/",
"homepage_uri" => "https://anycable.io/",
"source_code_uri" => "http://github.com/anycable/anycable",
"funding_uri" => "https://github.com/sponsors/anycable"
}
spec.executables = []
spec.files = %w[README.md MIT-LICENSE CHANGELOG.md]
spec.require_paths = ["lib"]
spec.required_ruby_version = ">= 2.6.0"
spec.add_dependency "anycable-core", AnyCable::VERSION
spec.add_dependency "grpc", "~> 1.37"
end