summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHiroshi SHIBATA <hsbt@ruby-lang.org>2020-10-06 20:45:06 +0900
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2020-10-08 16:40:46 +0900
commit2711e3bab960da785c749fafaac22c7b4758505d (patch)
treeaad9552b683756b6caccc3d897737c5cf44bb08d
parent0807d05d6eb8a19e07e21091338430b212100567 (diff)
Promote pp to default gems
-rw-r--r--doc/maintainers.rdoc5
-rw-r--r--doc/standard_library.rdoc2
-rw-r--r--lib/pp.gemspec22
-rw-r--r--tool/sync_default_gems.rb1
4 files changed, 27 insertions, 3 deletions
diff --git a/doc/maintainers.rdoc b/doc/maintainers.rdoc
index ed1d7a2a02..7773de7af0 100644
--- a/doc/maintainers.rdoc
+++ b/doc/maintainers.rdoc
@@ -44,8 +44,6 @@ Zachary Scott (zzak)
_unmaintained_
[lib/mkmf.rb]
_unmaintained_
-[lib/pp.rb]
- Tanaka Akira (akr)
[lib/prettyprint.rb]
Tanaka Akira (akr)
[lib/rubygems.rb, lib/rubygems/*]
@@ -195,6 +193,9 @@ Zachary Scott (zzak)
Marc-Andre Lafortune (marcandre)
https://github.com/ruby/ostruct
https://rubygems.org/gems/ostruct
+[lib/pp.rb]
+ Tanaka Akira (akr)
+ https://github.com/ruby/pp
[lib/prime.rb]
Yuki Sonoda (yugui)
https://github.com/ruby/prime
diff --git a/doc/standard_library.rdoc b/doc/standard_library.rdoc
index 8406579a91..f4c54fd531 100644
--- a/doc/standard_library.rdoc
+++ b/doc/standard_library.rdoc
@@ -11,7 +11,6 @@ description.
DEBUGGER__:: Debugging functionality for Ruby
DRb:: Distributed object system for Ruby
MakeMakefile:: Module used to generate a Makefile for C extensions
-PP:: Provides a PrettyPrinter for Ruby objects
PrettyPrinter:: Implements a pretty printing algorithm for readable structure
RbConfig:: Information of your configure and build of Ruby
Gem:: Package management framework for Ruby
@@ -62,6 +61,7 @@ Observable:: Provides a mechanism for publish/subscribe pattern in Ruby
Open3:: Provides access to stdin, stdout and stderr when running other programs
OpenStruct:: Class to build custom data structures, similar to a Hash
OpenURI:: An easy-to-use wrapper for Net::HTTP, Net::HTTPS and Net::FTP
+PP:: Provides a PrettyPrinter for Ruby objects
Prime:: Prime numbers and factorization library
PStore:: Implements a file based persistence mechanism based on a Hash
Racc:: A LALR(1) parser generator written in Ruby.
diff --git a/lib/pp.gemspec b/lib/pp.gemspec
new file mode 100644
index 0000000000..e77be442de
--- /dev/null
+++ b/lib/pp.gemspec
@@ -0,0 +1,22 @@
+Gem::Specification.new do |spec|
+ spec.name = "pp"
+ spec.version = "0.1.0"
+ spec.authors = ["Tanaka Akira"]
+ spec.email = ["akr@fsij.org"]
+
+ spec.summary = %q{Provides a PrettyPrinter for Ruby objects}
+ spec.description = %q{Provides a PrettyPrinter for Ruby objects}
+ spec.homepage = "https://github.com/ruby/pp"
+ spec.required_ruby_version = Gem::Requirement.new(">= 2.3.0")
+ spec.licenses = ["Ruby", "BSD-2-Clause"]
+
+ spec.metadata["homepage_uri"] = spec.homepage
+ spec.metadata["source_code_uri"] = spec.homepage
+
+ spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
+ `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
+ end
+ spec.bindir = "exe"
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
+ spec.require_paths = ["lib"]
+end
diff --git a/tool/sync_default_gems.rb b/tool/sync_default_gems.rb
index c6d64e9bd9..1fa08ae21d 100644
--- a/tool/sync_default_gems.rb
+++ b/tool/sync_default_gems.rb
@@ -77,6 +77,7 @@ REPOSITORIES = {
resolv: "ruby/resolv",
"resolv-replace": "ruby/resolv-replace",
time: "ruby/time",
+ pp: "ruby/pp",
}
def sync_default_gems(gem)