mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Promote webrick to bundled gems
This commit is contained in:
parent
087ac34fb2
commit
0e73b49b4c
Notes:
git
2020-12-10 18:06:57 +09:00
5 changed files with 4 additions and 7 deletions
|
@ -293,10 +293,6 @@ Yukihiro Matsumoto (matz)
|
||||||
YAMADA, Akira (akira)
|
YAMADA, Akira (akira)
|
||||||
https://github.com/ruby/uri
|
https://github.com/ruby/uri
|
||||||
https://rubygems.org/gems/uri
|
https://rubygems.org/gems/uri
|
||||||
[lib/webrick.rb, lib/webrick/*]
|
|
||||||
Eric Wong (normalperson)
|
|
||||||
https://bugs.ruby-lang.org/
|
|
||||||
https://rubygems.org/gems/webrick
|
|
||||||
[lib/yaml.rb, lib/yaml/*]
|
[lib/yaml.rb, lib/yaml/*]
|
||||||
Aaron Patterson (tenderlove), Hiroshi SHIBATA (hsbt)
|
Aaron Patterson (tenderlove), Hiroshi SHIBATA (hsbt)
|
||||||
https://github.com/ruby/yaml
|
https://github.com/ruby/yaml
|
||||||
|
@ -419,3 +415,5 @@ Yukihiro Matsumoto (matz)
|
||||||
https://github.com/ruby/rbs
|
https://github.com/ruby/rbs
|
||||||
[typeprof]
|
[typeprof]
|
||||||
https://github.com/ruby/typeprof
|
https://github.com/ruby/typeprof
|
||||||
|
[lib/webrick.rb, lib/webrick/*]
|
||||||
|
https://github.com/ruby/webrick
|
||||||
|
|
|
@ -79,7 +79,6 @@ Tracer:: Outputs a source level execution trace of a Ruby program
|
||||||
TSort:: Topological sorting using Tarjan's algorithm
|
TSort:: Topological sorting using Tarjan's algorithm
|
||||||
un.rb:: Utilities to replace common UNIX commands
|
un.rb:: Utilities to replace common UNIX commands
|
||||||
URI:: A Ruby module providing support for Uniform Resource Identifiers
|
URI:: A Ruby module providing support for Uniform Resource Identifiers
|
||||||
WEBrick:: An HTTP server toolkit for Ruby
|
|
||||||
YAML:: Ruby client library for the Psych YAML implementation
|
YAML:: Ruby client library for the Psych YAML implementation
|
||||||
WeakRef:: Allows a referenced object to be garbage-collected
|
WeakRef:: Allows a referenced object to be garbage-collected
|
||||||
|
|
||||||
|
@ -117,3 +116,4 @@ REXML:: An XML toolkit for Ruby
|
||||||
RSS:: Family of libraries that support various formats of XML "feeds"
|
RSS:: Family of libraries that support various formats of XML "feeds"
|
||||||
RBS:: RBS is a language to describe the structure of Ruby programs
|
RBS:: RBS is a language to describe the structure of Ruby programs
|
||||||
TypeProf:: A type analysis tool for Ruby code based on abstract interpretation
|
TypeProf:: A type analysis tool for Ruby code based on abstract interpretation
|
||||||
|
WEBrick:: An HTTP server toolkit for Ruby
|
||||||
|
|
|
@ -7,3 +7,4 @@ rexml 3.2.4 https://github.com/ruby/rexml
|
||||||
rss 0.2.9 https://github.com/ruby/rss 0.2.9
|
rss 0.2.9 https://github.com/ruby/rss 0.2.9
|
||||||
rbs 0.20.1 https://github.com/ruby/rbs
|
rbs 0.20.1 https://github.com/ruby/rbs
|
||||||
typeprof 0.9.0 https://github.com/ruby/typeprof 91567738bea4a9288bfaec8200702bd19e12a17e
|
typeprof 0.9.0 https://github.com/ruby/typeprof 91567738bea4a9288bfaec8200702bd19e12a17e
|
||||||
|
webrick 1.6.1 https://github.com/ruby/webrick
|
||||||
|
|
|
@ -81,7 +81,6 @@ DEFAULT_GEM_LIBS = %w[
|
||||||
sync
|
sync
|
||||||
thwait
|
thwait
|
||||||
tracer
|
tracer
|
||||||
webrick
|
|
||||||
]
|
]
|
||||||
|
|
||||||
DEFAULT_GEM_EXTS = %w[
|
DEFAULT_GEM_EXTS = %w[
|
||||||
|
|
|
@ -17,7 +17,6 @@ REPOSITORIES = {
|
||||||
"io-nonblock": 'ruby/io-nonblock',
|
"io-nonblock": 'ruby/io-nonblock',
|
||||||
"io-wait": 'ruby/io-wait',
|
"io-wait": 'ruby/io-wait',
|
||||||
csv: 'ruby/csv',
|
csv: 'ruby/csv',
|
||||||
webrick: 'ruby/webrick',
|
|
||||||
dbm: 'ruby/dbm',
|
dbm: 'ruby/dbm',
|
||||||
gdbm: 'ruby/gdbm',
|
gdbm: 'ruby/gdbm',
|
||||||
etc: 'ruby/etc',
|
etc: 'ruby/etc',
|
||||||
|
|
Loading…
Reference in a new issue