-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
tipi.gemspec
46 lines (39 loc) · 1.91 KB
/
tipi.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
37
38
39
40
41
42
43
44
45
46
require_relative './lib/tipi/version'
Gem::Specification.new do |s|
s.name = 'tipi'
s.version = Tipi::VERSION
s.licenses = ['MIT']
s.summary = 'Tipi - the All-in-one Web Server for Ruby Apps'
s.author = 'Sharon Rosner'
s.email = '[email protected]'
s.files = `git ls-files`.split
s.homepage = 'http://github.com/digital-fabric/tipi'
s.metadata = {
"source_code_uri" => "https://github.com/digital-fabric/tipi",
"documentation_uri" => "https://www.rubydoc.info/gems/tipi",
"homepage_uri" => "https://github.com/digital-fabric/tipi",
"changelog_uri" => "https://github.com/digital-fabric/tipi/blob/master/CHANGELOG.md"
}
s.rdoc_options = ["--title", "tipi", "--main", "README.md"]
s.extra_rdoc_files = ["README.md"]
s.require_paths = ["lib"]
s.required_ruby_version = '>= 3.1'
s.executables = ['tipi']
s.add_runtime_dependency 'polyphony', '~>1.4'
s.add_runtime_dependency 'ever', '~>0.2'
s.add_runtime_dependency 'qeweney', '~>0.18'
s.add_runtime_dependency 'extralite', '~>2.1'
s.add_runtime_dependency 'h1p', '~>1.1'
s.add_runtime_dependency 'http-2', '~>0.11'
s.add_runtime_dependency 'rack', '>=2.0.8', '<3.1.0'
s.add_runtime_dependency 'websocket', '~>1.2.9'
s.add_runtime_dependency 'acme-client', '~>2.0.14'
s.add_runtime_dependency 'localhost', '~>1.1.10'
# for digital fabric
s.add_runtime_dependency 'msgpack', '~>1.7.1'
s.add_development_dependency 'rake', '~>13.0.6'
s.add_development_dependency 'minitest', '~>5.18.1'
s.add_development_dependency 'simplecov', '~>0.22.0'
s.add_development_dependency 'memory_profiler', '~>1.0.1'
s.add_development_dependency 'cuba', '~>3.9.3'
end