ruby-changes:45523
From: hsbt <ko1@a...>
Date: Fri, 10 Feb 2017 18:41:19 +0900 (JST)
Subject: [ruby-changes:45523] hsbt:r57596 (trunk): Added initial gemspec for Fcntl module.
hsbt 2017-02-10 18:41:15 +0900 (Fri, 10 Feb 2017) New Revision: 57596 https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=57596 Log: Added initial gemspec for Fcntl module. [Feature #13206] * ext/fcntl/fcntl.gemspec: initial commit. * doc/maintainers.rdoc, doc/standard_library.rdoc: Move Fcntl module to Default gems section. Added files: trunk/ext/fcntl/fcntl.gemspec Modified files: trunk/doc/maintainers.rdoc trunk/doc/standard_library.rdoc Index: ext/fcntl/fcntl.gemspec =================================================================== --- ext/fcntl/fcntl.gemspec (revision 0) +++ ext/fcntl/fcntl.gemspec (revision 57596) @@ -0,0 +1,17 @@ https://github.com/ruby/ruby/blob/trunk/ext/fcntl/fcntl.gemspec#L1 +Gem::Specification.new do |s| + s.name = "Fcntl" + s.version = '0.0.1' + s.date = '2017-02-10' + s.summary = "Loads constants defined in the OS fcntl.h C header file" + s.description = "Loads constants defined in the OS fcntl.h C header file" + + s.require_path = %w{lib} + s.files = %w{depend extconf.rb fcntl.c} + 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 Index: doc/maintainers.rdoc =================================================================== --- doc/maintainers.rdoc (revision 57595) +++ doc/maintainers.rdoc (revision 57596) @@ -179,8 +179,6 @@ Zachary Scott (zzak) https://github.com/ruby/ruby/blob/trunk/doc/maintainers.rdoc#L179 Akinori MUSHA (knu) [ext/etc] _unmaintained_ -[ext/fcntl] - _unmaintained_ [ext/fiber] Koichi Sasada (ko1) [ext/fiddle] @@ -248,6 +246,8 @@ Zachary Scott (zzak) https://github.com/ruby/ruby/blob/trunk/doc/maintainers.rdoc#L246 _unmaintained_ [ext/dbm] _unmaintained_ +[ext/fcntl] + _unmaintained_ [ext/io/console] Nobuyuki Nakada (nobu) [ext/json] Index: doc/standard_library.rdoc =================================================================== --- doc/standard_library.rdoc (revision 57595) +++ doc/standard_library.rdoc (revision 57596) @@ -79,7 +79,6 @@ YAML:: Ruby client library for the Psych https://github.com/ruby/ruby/blob/trunk/doc/standard_library.rdoc#L79 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 -Fcntl:: Loads constants defined in the OS fcntl.h C header file Fiddle:: A libffi wrapper for Ruby GDBM:: Ruby extension for the GNU dbm (gdbm) library IO:: Extensions for Ruby IO class, including #wait and ::console @@ -111,6 +110,7 @@ BigDecimal:: Provides arbitrary-precisio https://github.com/ruby/ruby/blob/trunk/doc/standard_library.rdoc#L110 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 +Fcntl:: Loads constants defined in the OS fcntl.h C header file IO::console:: Console interface JSON:: Implements Javascript Object Notation for Ruby OpenSSL:: Provides SSL, TLS and general purpose cryptography for Ruby -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/