ruby-changes:45669
From: hsbt <ko1@a...>
Date: Tue, 28 Feb 2017 16:45:59 +0900 (JST)
Subject: [ruby-changes:45669] hsbt:r57742 (trunk): Added initial gemspec for SDBM module.
hsbt 2017-02-28 16:45:54 +0900 (Tue, 28 Feb 2017) New Revision: 57742 https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=57742 Log: Added initial gemspec for SDBM module. [Feature #13261] * doc/*.rdoc: Move SDBM entry to default gem section. * ext/sdbm/sdbm.gemspec: first gemspec. Added files: trunk/ext/sdbm/sdbm.gemspec Modified files: trunk/doc/maintainers.rdoc trunk/doc/standard_library.rdoc Index: doc/maintainers.rdoc =================================================================== --- doc/maintainers.rdoc (revision 57741) +++ doc/maintainers.rdoc (revision 57742) @@ -201,8 +201,6 @@ Zachary Scott (zzak) https://github.com/ruby/ruby/blob/trunk/doc/maintainers.rdoc#L201 TAKAO Kouji (kouji) [ext/ripper] _unmaintained_ -[ext/sdbm] - Yukihiro Matsumoto (matz) [ext/socket] * Tanaka Akira (akr) * API change needs matz's approval @@ -259,6 +257,8 @@ Zachary Scott (zzak) https://github.com/ruby/ruby/blob/trunk/doc/maintainers.rdoc#L257 [ext/psych] Aaron Patterson (tenderlove), Hiroshi SHIBATA(hsbt) https://github.com/ruby/psych +[ext/sdbm] + Yukihiro Matsumoto (matz) [ext/strscan] _unmaintained_ [ext/zlib] Index: doc/standard_library.rdoc =================================================================== --- doc/standard_library.rdoc (revision 57741) +++ doc/standard_library.rdoc (revision 57742) @@ -85,7 +85,6 @@ Pathname:: Representation of the name of https://github.com/ruby/ruby/blob/trunk/doc/standard_library.rdoc#L85 PTY:: Creates and manages pseudo terminals Readline:: Provides an interface for GNU Readline and Edit Line (libedit) Ripper:: Provides an interface for parsing Ruby programs into S-expressions -SDBM:: Provides a simple file-based key-value store with String keys and values Socket:: Access underlying OS socket implementations StringIO:: Pseudo I/O on String objects Syslog:: Ruby interface for the POSIX system logging facility @@ -115,6 +114,7 @@ IO::console:: Console interface https://github.com/ruby/ruby/blob/trunk/doc/standard_library.rdoc#L114 JSON:: Implements Javascript Object Notation for Ruby OpenSSL:: Provides SSL, TLS and general purpose cryptography for Ruby Psych:: A YAML parser and emitter for Ruby +SDBM:: Provides a simple file-based key-value store with String keys and values StringScanner:: Provides lexical scanning operations on a String Zlib:: Ruby interface for the zlib compression/decompression library Index: ext/sdbm/sdbm.gemspec =================================================================== --- ext/sdbm/sdbm.gemspec (revision 0) +++ ext/sdbm/sdbm.gemspec (revision 57742) @@ -0,0 +1,17 @@ https://github.com/ruby/ruby/blob/trunk/ext/sdbm/sdbm.gemspec#L1 +Gem::Specification.new do |s| + s.name = "sdbm" + s.version = '0.0.1' + s.date = '2017-02-28' + s.summary = "Provides a simple file-based key-value store with String keys and values." + s.description = "Provides a simple file-based key-value store with String keys and values." + + s.require_path = %w{lib} + s.files = %w{_sdbm.c depend extconf.rb init.c sdbm.h} + 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/