diff options
author | hsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2018-08-07 12:02:10 +0000 |
---|---|---|
committer | hsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2018-08-07 12:02:10 +0000 |
commit | 7d9109f8006057d3e6ec44103cc1a5242529f4c2 () | |
tree | c4f76387ac61b78e333faf91b8c8066664b63632 | |
parent | 2ce807e89553534864daaef3e2e1218473d80474 (diff) |
Removed needless date attribute from gemspec of default gems.
They are assigned automatically when pushing gem file to rubygems.org. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@64213 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ext/date/date.gemspec | 1 | ||||
-rw-r--r-- | ext/dbm/dbm.gemspec | 1 | ||||
-rw-r--r-- | ext/fcntl/fcntl.gemspec | 1 | ||||
-rw-r--r-- | ext/gdbm/gdbm.gemspec | 1 | ||||
-rw-r--r-- | ext/sdbm/sdbm.gemspec | 1 | ||||
-rw-r--r-- | ext/stringio/stringio.gemspec | 1 | ||||
-rw-r--r-- | ext/strscan/strscan.gemspec | 1 | ||||
-rw-r--r-- | ext/zlib/zlib.gemspec | 1 | ||||
-rw-r--r-- | lib/cmath.gemspec | 1 | ||||
-rw-r--r-- | lib/scanf.gemspec | 1 | ||||
-rw-r--r-- | lib/webrick/webrick.gemspec | 1 |
11 files changed, 0 insertions, 11 deletions
@@ -2,7 +2,6 @@ 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." @@ -2,7 +2,6 @@ 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" @@ -4,7 +4,6 @@ Gem::Specification.new do |spec| spec.name = "fcntl" spec.version = "1.0.0" - spec.date = '2017-12-11' spec.authors = ["Yukihiro Matsumoto"] spec.email = ["[email protected]"] @@ -4,7 +4,6 @@ Gem::Specification.new do |spec| spec.name = "gdbm" spec.version = "2.0.0" - spec.date = '2017-04-28' spec.authors = ["Yukihiro Matsumoto"] spec.email = ["[email protected]"] @@ -3,7 +3,6 @@ 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." @@ -10,7 +10,6 @@ Gem::Specification.new do |s| 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 = "[email protected]".freeze s.extensions = ["extconf.rb".freeze] @@ -2,7 +2,6 @@ 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." @@ -3,7 +3,6 @@ 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 = ["[email protected]", nil] @@ -4,7 +4,6 @@ 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] @@ -4,7 +4,6 @@ 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 = ['[email protected]'] @@ -4,7 +4,6 @@ require_relative 'version' 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." |