-
Notifications
You must be signed in to change notification settings - Fork 1
/
puma.gemspec
37 lines (34 loc) · 1.43 KB
/
puma.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
require_relative "lib/puma/const"
Gem::Specification.new do |s|
s.name = "puma"
s.version = Puma::Const::PUMA_VERSION
s.authors = ["Evan Phoenix"]
s.description = <<~DESCRIPTION
Puma is a simple, fast, multi-threaded, and highly parallel HTTP 1.1 server
for Ruby/Rack applications. Puma is intended for use in both development and
production environments. It's great for highly parallel Ruby implementations such as
JRuby and TruffleRuby as well as as providing process worker support to support CRuby well.
DESCRIPTION
s.summary = "A Ruby/Rack web server built for parallelism."
s.email = ["[email protected]"]
s.executables = ["puma", "pumactl"]
s.extensions = ["ext/puma_http11/extconf.rb"]
s.add_runtime_dependency "nio4r", "~> 2.0"
if RbConfig::CONFIG['ruby_version'] >= '2.5'
s.metadata["msys2_mingw_dependencies"] = "openssl"
end
s.files = `git ls-files -- bin docs ext lib tools`.split("\n") +
%w[History.md LICENSE README.md]
s.homepage = "https://puma.io"
if s.respond_to?(:metadata=)
s.metadata = {
"bug_tracker_uri" => "https://github.com/puma/puma/issues",
"changelog_uri" => "https://github.com/puma/puma/blob/master/History.md",
"homepage_uri" => "https://puma.io",
"source_code_uri" => "https://github.com/puma/puma",
"rubygems_mfa_required" => "true"
}
end
s.license = "BSD-3-Clause"
s.required_ruby_version = Gem::Requirement.new(">= 2.4")
end