[前][次][番号順一覧][スレッド一覧]

ruby-changes:51353

From: hsbt <ko1@a...>
Date: Sat, 2 Jun 2018 22:57:53 +0900 (JST)
Subject: [ruby-changes:51353] hsbt:r63559 (trunk): Promote Logger to default gems.

hsbt	2018-06-02 22:57:48 +0900 (Sat, 02 Jun 2018)

  New Revision: 63559

  https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=63559

  Log:
    Promote Logger to default gems.
    
      * Its upstream is https://github.com/ruby/logger.

  Added files:
    trunk/lib/logger.gemspec
  Modified files:
    trunk/doc/maintainers.rdoc
    trunk/doc/standard_library.rdoc
Index: doc/maintainers.rdoc
===================================================================
--- doc/maintainers.rdoc	(revision 63558)
+++ doc/maintainers.rdoc	(revision 63559)
@@ -68,8 +68,6 @@ Zachary Scott (zzak) https://github.com/ruby/ruby/blob/trunk/doc/maintainers.rdoc#L68
   Akinori MUSHA (knu)
 [lib/irb.rb, lib/irb/*]
   Keiju ISHITSUKA (keiju)
-[lib/logger.rb]
-  Naotoshi Seo (sonots)
 [lib/matrix.rb]
   Marc-Andre Lafortune (marcandre)
 [lib/mkmf.rb]
@@ -213,6 +211,8 @@ Zachary Scott (zzak) https://github.com/ruby/ruby/blob/trunk/doc/maintainers.rdoc#L211
 [lib/fileutils.rb]
   _unmaintained_
   https://github.com/ruby/fileutils
+[lib/logger.rb]
+  Naotoshi Seo (sonots)
 [lib/rdoc.rb, lib/rdoc/*]
   Eric Hodel (drbrain), Hiroshi SHIBATA (hsbt)
   https://github.com/ruby/rdoc
Index: doc/standard_library.rdoc
===================================================================
--- doc/standard_library.rdoc	(revision 63558)
+++ doc/standard_library.rdoc	(revision 63559)
@@ -24,7 +24,6 @@ Forwardable:: Provides delegation of spe https://github.com/ruby/ruby/blob/trunk/doc/standard_library.rdoc#L24
 GetoptLong:: Parse command line options similar to the GNU C getopt_long()
 IPAddr:: Provides methods to manipulate IPv4 and IPv6 IP addresses
 IRB:: Interactive Ruby command-line tool for REPL (Read Eval Print Loop)
-Logger:: Provides a simple logging utility for outputting messages
 MakeMakefile:: Module used to generate a Makefile for C extensions
 Matrix:: Represents a mathematical matrix.
 Monitor:: Provides an object or module to use safely by more than one thread
@@ -93,6 +92,7 @@ Bundler:: Manage your Ruby application's https://github.com/ruby/ruby/blob/trunk/doc/standard_library.rdoc#L92
 CMath:: Provides Trigonometric and Transcendental functions for complex numbers
 CSV:: Provides an interface to read and write CSV files and data
 FileUtils:: Several file utility methods for copying, moving, removing, etc
+Logger:: Provides a simple logging utility for outputting messages
 RDoc:: Produces HTML and command-line documentation for Ruby
 REXML:: An XML toolkit for Ruby
 RSS:: Family of libraries that support various formats of XML "feeds"
Index: lib/logger.gemspec
===================================================================
--- lib/logger.gemspec	(nonexistent)
+++ lib/logger.gemspec	(revision 63559)
@@ -0,0 +1,22 @@ https://github.com/ruby/ruby/blob/trunk/lib/logger.gemspec#L1
+require_relative "logger"
+
+Gem::Specification.new do |spec|
+  spec.name          = "logger"
+  spec.version       = Logger::VERSION
+  spec.authors       = ["SHIBATA Hiroshi"]
+  spec.email         = ["hsbt@r..."]
+
+  spec.summary       = %q{Provides a simple logging utility for outputting messages.}
+  spec.description   = %q{Provides a simple logging utility for outputting messages.}
+  spec.homepage      = "https://github.com/ruby/logger"
+  spec.license       = "BSD-2-Clause"
+
+  spec.files         = [".gitignore", ".travis.yml", "Gemfile", "LICENSE.txt", "README.md", "Rakefile", "bin/console", "bin/setup", "lib/logger.rb", "logger.gemspec"]
+  spec.bindir        = "exe"
+  spec.executables   = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
+  spec.require_paths = ["lib"]
+
+  spec.add_development_dependency "bundler", "~> 1.16"
+  spec.add_development_dependency "rake", "~> 10.0"
+  spec.add_development_dependency "minitest", "~> 5.0"
+end

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]