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

ruby-changes:45554

From: hsbt <ko1@a...>
Date: Tue, 14 Feb 2017 20:12:57 +0900 (JST)
Subject: [ruby-changes:45554] hsbt:r57627 (trunk): Added initial gemspec for Scanf module.

hsbt	2017-02-14 20:12:52 +0900 (Tue, 14 Feb 2017)

  New Revision: 57627

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

  Log:
    Added initial gemspec for Scanf module.
    
      [Feature #13213]

  Added files:
    trunk/lib/scanf.gemspec
  Modified files:
    trunk/doc/maintainers.rdoc
    trunk/doc/standard_library.rdoc
Index: doc/standard_library.rdoc
===================================================================
--- doc/standard_library.rdoc	(revision 57626)
+++ doc/standard_library.rdoc	(revision 57627)
@@ -55,7 +55,6 @@ REXML:: An XML toolkit for Ruby https://github.com/ruby/ruby/blob/trunk/doc/standard_library.rdoc#L55
 Rinda:: The Linda distributed computing paradigm in Ruby
 RSS:: Family of libraries that support various formats of XML "feeds"
 Gem:: Package management framework for Ruby
-Scanf:: A Ruby implementation of the C function scanf(3)
 SecureRandom:: Interface for secure random number generator
 Set:: Provides a class to deal with collections of unordered, unique values
 Shell:: An idiomatic Ruby interface for common UNIX shell commands
@@ -102,6 +101,7 @@ CMath:: Provides Trigonometric and Trans https://github.com/ruby/ruby/blob/trunk/doc/standard_library.rdoc#L101
 CSV:: Provides an interface to read and write CSV files and data
 FileUtils:: Several file utility methods for copying, moving, removing, etc
 RDoc:: Produces HTML and command-line documentation for Ruby
+Scanf:: A Ruby implementation of the C function scanf(3)
 WEBrick:: An HTTP server toolkit for Ruby
 
 == Extensions
Index: doc/maintainers.rdoc
===================================================================
--- doc/maintainers.rdoc	(revision 57626)
+++ doc/maintainers.rdoc	(revision 57627)
@@ -128,8 +128,6 @@ Zachary Scott (zzak) https://github.com/ruby/ruby/blob/trunk/doc/maintainers.rdoc#L128
   Kouhei Sutou (kou)
 [lib/rubygems.rb, lib/ubygems.rb, lib/rubygems/*]
   Eric Hodel (drbrain), Hiroshi SHIBATA (hsbt)
-[lib/scanf.rb]
-  David A. Black (dblack)
 [lib/set.rb]
   Akinori MUSHA (knu)
 [lib/securerandom.rb]
@@ -234,6 +232,8 @@ Zachary Scott (zzak) https://github.com/ruby/ruby/blob/trunk/doc/maintainers.rdoc#L232
 [lib/rdoc.rb, lib/rdoc/*]
   Eric Hodel (drbrain), Hiroshi SHIBATA (hsbt)
   https://github.com/rdoc/rdoc
+[lib/scanf.rb]
+  David A. Black (dblack)
 [lib/webrick.rb, lib/webrick/*]
   Hiroshi Nakamura (nahi)
 
Index: lib/scanf.gemspec
===================================================================
--- lib/scanf.gemspec	(revision 0)
+++ lib/scanf.gemspec	(revision 57627)
@@ -0,0 +1,16 @@ https://github.com/ruby/ruby/blob/trunk/lib/scanf.gemspec#L1
+Gem::Specification.new do |s|
+  s.name = "scanf"
+  s.version = '0.0.1'
+  s.date = '2017-02-14'
+  s.summary = "scanf is an implementation of the C function scanf(3)."
+  s.description = "scanf is an implementation of the C function scanf(3)."
+
+  s.require_path = %w{lib}
+  s.files = %w{scanf.rb}
+  s.required_ruby_version = ">= 2.5.0dev"
+
+  s.authors = ["David Alan Black"]
+  s.email = ['dblack@s...']
+  s.homepage = "https://www.ruby-lang.org"
+  s.license = "BSD-2-Clause"
+end

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

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