ruby-changes:51998
From: hsbt <ko1@a...>
Date: Tue, 7 Aug 2018 21:02:14 +0900 (JST)
Subject: [ruby-changes:51998] hsbt:r64213 (trunk): Removed needless date attribute from gemspec of default gems.
hsbt 2018-08-07 21:02:10 +0900 (Tue, 07 Aug 2018) New Revision: 64213 https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=64213 Log: Removed needless date attribute from gemspec of default gems. They are assigned automatically when pushing gem file to rubygems.org. Modified files: trunk/ext/date/date.gemspec trunk/ext/dbm/dbm.gemspec trunk/ext/fcntl/fcntl.gemspec trunk/ext/gdbm/gdbm.gemspec trunk/ext/sdbm/sdbm.gemspec trunk/ext/stringio/stringio.gemspec trunk/ext/strscan/strscan.gemspec trunk/ext/zlib/zlib.gemspec trunk/lib/cmath.gemspec trunk/lib/scanf.gemspec trunk/lib/webrick/webrick.gemspec Index: lib/webrick/webrick.gemspec =================================================================== --- lib/webrick/webrick.gemspec (revision 64212) +++ lib/webrick/webrick.gemspec (revision 64213) @@ -4,7 +4,6 @@ require_relative 'version' https://github.com/ruby/ruby/blob/trunk/lib/webrick/webrick.gemspec#L4 Gem::Specification.new do |s| s.name = "webrick" s.version = WEBrick::VERSION - s.date = '2017-12-24' s.summary = "HTTP server toolkit" s.description = "WEBrick is an HTTP server toolkit that can be configured as an HTTPS server, a proxy server, and a virtual-host server." Index: lib/scanf.gemspec =================================================================== --- lib/scanf.gemspec (revision 64212) +++ lib/scanf.gemspec (revision 64213) @@ -4,7 +4,6 @@ https://github.com/ruby/ruby/blob/trunk/lib/scanf.gemspec#L4 Gem::Specification.new do |spec| spec.name = "scanf" spec.version = "1.0.0" - spec.date = '2017-12-11' spec.authors = ["David Alan Black"] spec.email = ['dblack@s...'] Index: lib/cmath.gemspec =================================================================== --- lib/cmath.gemspec (revision 64212) +++ lib/cmath.gemspec (revision 64213) @@ -4,7 +4,6 @@ https://github.com/ruby/ruby/blob/trunk/lib/cmath.gemspec#L4 Gem::Specification.new do |spec| spec.name = "cmath" spec.version = "1.0.0" - spec.date = '2017-12-11' spec.authors = ["Tadayoshi Funaba"] spec.email = [nil] Index: ext/sdbm/sdbm.gemspec =================================================================== --- ext/sdbm/sdbm.gemspec (revision 64212) +++ ext/sdbm/sdbm.gemspec (revision 64213) @@ -3,7 +3,6 @@ https://github.com/ruby/ruby/blob/trunk/ext/sdbm/sdbm.gemspec#L3 Gem::Specification.new do |s| s.name = "sdbm" s.version = '1.0.0' - s.date = '2017-12-11' 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." Index: ext/zlib/zlib.gemspec =================================================================== --- ext/zlib/zlib.gemspec (revision 64212) +++ ext/zlib/zlib.gemspec (revision 64213) @@ -3,7 +3,6 @@ https://github.com/ruby/ruby/blob/trunk/ext/zlib/zlib.gemspec#L3 Gem::Specification.new do |spec| spec.name = "zlib" spec.version = "1.0.0" - spec.date = '2017-12-11' spec.authors = ["Yukihiro Matsumoto", "UENO Katsuhiro"] spec.email = ["matz@r...", nil] Index: ext/date/date.gemspec =================================================================== --- ext/date/date.gemspec (revision 64212) +++ ext/date/date.gemspec (revision 64213) @@ -2,7 +2,6 @@ https://github.com/ruby/ruby/blob/trunk/ext/date/date.gemspec#L2 Gem::Specification.new do |s| s.name = "date" s.version = '1.0.0' - s.date = '2017-12-11' s.summary = "A subclass of Object includes Comparable module for handling dates." s.description = "A subclass of Object includes Comparable module for handling dates." Index: ext/stringio/stringio.gemspec =================================================================== --- ext/stringio/stringio.gemspec (revision 64212) +++ ext/stringio/stringio.gemspec (revision 64213) @@ -10,7 +10,6 @@ Gem::Specification.new do |s| https://github.com/ruby/ruby/blob/trunk/ext/stringio/stringio.gemspec#L10 s.required_rubygems_version = Gem::Requirement.new(">= 2.6".freeze) s.require_paths = ["lib".freeze] s.authors = ["Nobu Nakada".freeze] - s.date = "2016-06-09" s.description = "Pseudo `IO` class from/to `String`.".freeze s.email = "nobu@r...".freeze s.extensions = ["extconf.rb".freeze] Index: ext/dbm/dbm.gemspec =================================================================== --- ext/dbm/dbm.gemspec (revision 64212) +++ ext/dbm/dbm.gemspec (revision 64213) @@ -2,7 +2,6 @@ https://github.com/ruby/ruby/blob/trunk/ext/dbm/dbm.gemspec#L2 Gem::Specification.new do |s| s.name = "dbm" s.version = '1.0.0' - s.date = '2017-02-08' s.summary = "Provides a wrapper for the UNIX-style Database Manager Library" s.description = "Provides a wrapper for the UNIX-style Database Manager Library" Index: ext/fcntl/fcntl.gemspec =================================================================== --- ext/fcntl/fcntl.gemspec (revision 64212) +++ ext/fcntl/fcntl.gemspec (revision 64213) @@ -4,7 +4,6 @@ https://github.com/ruby/ruby/blob/trunk/ext/fcntl/fcntl.gemspec#L4 Gem::Specification.new do |spec| spec.name = "fcntl" spec.version = "1.0.0" - spec.date = '2017-12-11' spec.authors = ["Yukihiro Matsumoto"] spec.email = ["matz@r..."] Index: ext/gdbm/gdbm.gemspec =================================================================== --- ext/gdbm/gdbm.gemspec (revision 64212) +++ ext/gdbm/gdbm.gemspec (revision 64213) @@ -4,7 +4,6 @@ https://github.com/ruby/ruby/blob/trunk/ext/gdbm/gdbm.gemspec#L4 Gem::Specification.new do |spec| spec.name = "gdbm" spec.version = "2.0.0" - spec.date = '2017-04-28' spec.authors = ["Yukihiro Matsumoto"] spec.email = ["matz@r..."] Index: ext/strscan/strscan.gemspec =================================================================== --- ext/strscan/strscan.gemspec (revision 64212) +++ ext/strscan/strscan.gemspec (revision 64213) @@ -2,7 +2,6 @@ https://github.com/ruby/ruby/blob/trunk/ext/strscan/strscan.gemspec#L2 Gem::Specification.new do |s| s.name = "strscan" s.version = '1.0.0' - s.date = '2017-12-19' s.summary = "Provides lexical scanning operations on a String." s.description = "Provides lexical scanning operations on a String." -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/