-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathanyt-core.gemspec
More file actions
27 lines (21 loc) · 891 Bytes
/
anyt-core.gemspec
File metadata and controls
27 lines (21 loc) · 891 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
# frozen_string_literal: true
require_relative "lib/anyt/version"
Gem::Specification.new do |spec|
spec.name = "anyt-core"
spec.version = Anyt::VERSION
spec.authors = ["palkan"]
spec.email = ["dementiev.vm@gmail.com"]
spec.summary = "Action Cable / AnyCable conformance testing tool"
spec.description = "Action Cable / AnyCable conformance testing tool"
spec.homepage = "http://github.com/anycable/anyt"
spec.license = "MIT"
spec.files = Dir.glob("lib/**/*") + Dir.glob("bin/*") + %w[README.md MIT-LICENSE]
spec.require_paths = ["lib"]
spec.required_ruby_version = ">= 3.1.0"
spec.add_dependency "rack", ">= 2.0"
spec.add_dependency "rails", ">= 6.0"
spec.add_dependency "anyway_config", ">= 2.2.0"
spec.add_dependency "websocket", "~> 1.2.4"
spec.add_dependency "websocket-client-simple", "~> 0.8"
spec.add_dependency "concurrent-ruby", "~> 1.0"
end