forked from ruby/webrick
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebrick.gemspec
70 lines (66 loc) · 2.1 KB
/
webrick.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
# frozen_string_literal: true
begin
require_relative 'lib/webrick/version'
rescue LoadError
# for Ruby core repository
require_relative 'version'
end
Gem::Specification.new do |s|
s.name = "webrick"
s.version = WEBrick::VERSION
s.summary = "HTTP server toolkit"
s.description = "WEBrick is an HTTP server toolkit that can be configured as an HTTPS server, a proxy server, and a virtual-host server."
s.require_path = %w{lib}
s.files = [
"Gemfile",
"LICENSE.txt",
"README.md",
"Rakefile",
"lib/webrick.rb",
"lib/webrick/accesslog.rb",
"lib/webrick/cgi.rb",
"lib/webrick/compat.rb",
"lib/webrick/config.rb",
"lib/webrick/cookie.rb",
"lib/webrick/htmlutils.rb",
"lib/webrick/httpauth.rb",
"lib/webrick/httpauth/authenticator.rb",
"lib/webrick/httpauth/basicauth.rb",
"lib/webrick/httpauth/digestauth.rb",
"lib/webrick/httpauth/htdigest.rb",
"lib/webrick/httpauth/htgroup.rb",
"lib/webrick/httpauth/htpasswd.rb",
"lib/webrick/httpauth/userdb.rb",
"lib/webrick/httpproxy.rb",
"lib/webrick/httprequest.rb",
"lib/webrick/httpresponse.rb",
"lib/webrick/https.rb",
"lib/webrick/httpserver.rb",
"lib/webrick/httpservlet.rb",
"lib/webrick/httpservlet/abstract.rb",
"lib/webrick/httpservlet/cgi_runner.rb",
"lib/webrick/httpservlet/cgihandler.rb",
"lib/webrick/httpservlet/erbhandler.rb",
"lib/webrick/httpservlet/filehandler.rb",
"lib/webrick/httpservlet/prochandler.rb",
"lib/webrick/httpstatus.rb",
"lib/webrick/httputils.rb",
"lib/webrick/httpversion.rb",
"lib/webrick/log.rb",
"lib/webrick/server.rb",
"lib/webrick/ssl.rb",
"lib/webrick/utils.rb",
"lib/webrick/version.rb",
"webrick.gemspec",
]
s.required_ruby_version = ">= 2.4.0"
s.authors = ["TAKAHASHI Masayoshi", "GOTOU YUUZOU", "Eric Wong"]
s.email = [nil, nil, '[email protected]']
s.homepage = "https://github.com/ruby/webrick"
s.licenses = ["Ruby", "BSD-2-Clause"]
if s.respond_to?(:metadata=)
s.metadata = {
"bug_tracker_uri" => "https://github.com/ruby/webrick/issues",
}
end
end