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

ruby-changes:45657

From: hsbt <ko1@a...>
Date: Mon, 27 Feb 2017 18:20:53 +0900 (JST)
Subject: [ruby-changes:45657] hsbt:r57730 (trunk): Added initial gemspec for Etc module.

hsbt	2017-02-27 18:20:39 +0900 (Mon, 27 Feb 2017)

  New Revision: 57730

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

  Log:
    Added initial gemspec for Etc module.
    
      [Feature #13256]
    
      * doc/*.rdoc: move Etc module to default gem section.
      * ext/etc/etc.gemspec: first gemspec.

  Added files:
    trunk/ext/etc/etc.gemspec
  Modified files:
    trunk/doc/maintainers.rdoc
    trunk/doc/standard_library.rdoc
Index: doc/standard_library.rdoc
===================================================================
--- doc/standard_library.rdoc	(revision 57729)
+++ doc/standard_library.rdoc	(revision 57730)
@@ -77,7 +77,6 @@ YAML:: Ruby client library for the Psych https://github.com/ruby/ruby/blob/trunk/doc/standard_library.rdoc#L77
 
 Coverage:: Provides coverage measurement for Ruby
 Digest:: Provides a framework for message digest libraries
-Etc:: Provides access to information typically stored in UNIX /etc directory
 Fiddle:: A libffi wrapper for Ruby
 IO:: Extensions for Ruby IO class, including #wait and ::console
 NKF:: Ruby extension for Network Kanji Filter
@@ -109,6 +108,7 @@ BigDecimal:: Provides arbitrary-precisio https://github.com/ruby/ruby/blob/trunk/doc/standard_library.rdoc#L108
 Date:: A subclass of Object includes Comparable module for handling dates
 DateTime:: Subclass of Date to handling dates, hours, minutes, seconds, offsets
 DBM:: Provides a wrapper for the UNIX-style Database Manager Library
+Etc:: Provides access to information typically stored in UNIX /etc directory
 Fcntl:: Loads constants defined in the OS fcntl.h C header file
 GDBM:: Ruby extension for the GNU dbm (gdbm) library
 IO::console:: Console interface
Index: doc/maintainers.rdoc
===================================================================
--- doc/maintainers.rdoc	(revision 57729)
+++ doc/maintainers.rdoc	(revision 57730)
@@ -175,8 +175,6 @@ Zachary Scott (zzak) https://github.com/ruby/ruby/blob/trunk/doc/maintainers.rdoc#L175
   Yusuke Endoh (mame)
 [ext/digest, ext/digest/*]
   Akinori MUSHA (knu)
-[ext/etc]
-  _unmaintained_
 [ext/fiber]
   Koichi Sasada (ko1)
 [ext/fiddle]
@@ -244,6 +242,8 @@ Zachary Scott (zzak) https://github.com/ruby/ruby/blob/trunk/doc/maintainers.rdoc#L242
   _unmaintained_
 [ext/dbm]
   _unmaintained_
+[ext/etc]
+  _unmaintained_
 [ext/fcntl]
   _unmaintained_
 [ext/gdbm]
Index: ext/etc/etc.gemspec
===================================================================
--- ext/etc/etc.gemspec	(revision 0)
+++ ext/etc/etc.gemspec	(revision 57730)
@@ -0,0 +1,17 @@ https://github.com/ruby/ruby/blob/trunk/ext/etc/etc.gemspec#L1
+Gem::Specification.new do |s|
+  s.name = "etc"
+  s.version = '0.0.1'
+  s.date = '2017-02-27'
+  s.summary = "Provides access to information typically stored in UNIX /etc directory."
+  s.description = "Provides access to information typically stored in UNIX /etc directory."
+
+  s.require_path = %w{lib}
+  s.files = %w{depend extconf.rb etc.c mkconstants.rb}
+  s.extensions = %w{extconf.rb}
+  s.required_ruby_version = ">= 2.5.0dev"
+
+  s.authors = ["Yukihiro Matsumoto"]
+  s.email = ["matz@r..."]
+  s.homepage = "https://www.ruby-lang.org"
+  s.license = "BSD-2-Clause"
+end

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

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