-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
cubism.gemspec
36 lines (30 loc) · 1.16 KB
/
cubism.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
33
34
35
36
require_relative "lib/cubism/version"
Gem::Specification.new do |spec|
spec.name = "cubism"
spec.version = Cubism::VERSION
spec.authors = ["Julian Rubisch"]
spec.email = ["[email protected]"]
spec.homepage = "https://github.com/julianrubisch/cubism"
spec.summary = "Lightweight Resource-Based Presence Solution with CableReady"
spec.description = "Lightweight Resource-Based Presence Solution with CableReady"
spec.license = "MIT"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = "https://github.com/julianrubisch/cubism.git"
# spec.metadata["changelog_uri"] = "TODO: Put your gem's CHANGELOG.md URL here."
spec.files = Dir[
"lib/**/*.rb",
"app/**/*.rb",
"app/assets/javascripts/*",
"bin/*",
"[A-Z]*"
]
spec.test_files = Dir["test/**/*.rb"]
spec.add_dependency "rails", ">= 6.0"
spec.add_dependency "kredis", ">= 0.4"
spec.add_dependency "cable_ready", ">= 5.0.0"
spec.add_development_dependency "standard"
spec.add_development_dependency "nokogiri"
spec.add_development_dependency "mocha"
spec.add_development_dependency "appraisal"
spec.add_development_dependency "sqlite3"
end