diff options
author | Hiroshi SHIBATA <[email protected]> | 2020-12-22 21:43:30 +0900 |
---|---|---|
committer | Hiroshi SHIBATA <[email protected]> | 2020-12-22 21:45:28 +0900 |
commit | 9b9cbbbc17bb5840581c7da37fd0feb0a7d4c1f3 () | |
tree | cc69767e7139d5616ad59764f8c897c598aa47ec /lib | |
parent | 96b881679390271eb2234060ea7eed77a997d707 (diff) |
Update library versions of the default gems.
They are followed up with https://.com/ruby/ruby/commit/8fb02b7a97317090e3946e6f2d4a7d034f9699f1
-rw-r--r-- | lib/English.gemspec | 2 | ||||
-rw-r--r-- | lib/benchmark/version.rb | 2 | ||||
-rw-r--r-- | lib/cgi.rb | 2 | ||||
-rw-r--r-- | lib/delegate.rb | 2 | ||||
-rw-r--r-- | lib/fileutils.rb | 2 | ||||
-rw-r--r-- | lib/forwardable.rb | 2 | ||||
-rw-r--r-- | lib/forwardable/forwardable.gemspec | 2 | ||||
-rw-r--r-- | lib/getoptlong.rb | 2 | ||||
-rw-r--r-- | lib/logger/version.rb | 2 | ||||
-rw-r--r-- | lib/mutex_m.gemspec | 2 | ||||
-rw-r--r-- | lib/mutex_m.rb | 2 | ||||
-rw-r--r-- | lib/net/ftp.rb | 2 | ||||
-rw-r--r-- | lib/net/http.rb | 2 | ||||
-rw-r--r-- | lib/net/imap.rb | 2 | ||||
-rw-r--r-- | lib/net/pop.rb | 2 | ||||
-rw-r--r-- | lib/observer.rb | 2 | ||||
-rw-r--r-- | lib/open3.rb | 2 | ||||
-rw-r--r-- | lib/ostruct/ostruct.gemspec | 2 | ||||
-rw-r--r-- | lib/pstore.rb | 2 | ||||
-rw-r--r-- | lib/resolv.gemspec | 2 | ||||
-rw-r--r-- | lib/singleton.rb | 2 | ||||
-rw-r--r-- | lib/tempfile.gemspec | 8 | ||||
-rw-r--r-- | lib/timeout.rb | 2 | ||||
-rw-r--r-- | lib/tmpdir.gemspec | 8 | ||||
-rw-r--r-- | lib/tracer.rb | 2 | ||||
-rw-r--r-- | lib/tracer/tracer.gemspec | 2 | ||||
-rw-r--r-- | lib/uri/version.rb | 2 | ||||
-rw-r--r-- | lib/weakref.rb | 2 | ||||
-rw-r--r-- | lib/yaml/yaml.gemspec | 2 |
29 files changed, 35 insertions, 35 deletions
@@ -1,6 +1,6 @@ Gem::Specification.new do |spec| spec.name = "english" - spec.version = "0.7.0" spec.authors = ["Yukihiro Matsumoto"] spec.email = ["[email protected]"] @@ -1,3 +1,3 @@ module Benchmark - VERSION = "0.1.0" end @@ -288,7 +288,7 @@ # class CGI - VERSION = "0.1.0" end require 'cgi/core' @@ -39,7 +39,7 @@ # Be advised, RDoc will not detect delegated methods. # class Delegator < BasicObject - VERSION = "0.1.0" kernel = ::Kernel.dup kernel.class_eval do @@ -102,7 +102,7 @@ end # <tt>:verbose</tt> flags to methods in FileUtils. # module FileUtils - VERSION = "1.4.1" def self.private_module_function(name) #:nodoc: module_function name @@ -112,7 +112,7 @@ module Forwardable require 'forwardable/impl' # Version of +forwardable.rb+ - VERSION = "1.3.1" FORWARDABLE_VERSION = VERSION @debug = nil @@ -19,7 +19,7 @@ Gem::Specification.new do |spec| spec.licenses = ["Ruby", "BSD-2-Clause"] spec.required_ruby_version = '>= 2.4.0' - spec.files = ["forwardable.gemspec", "lib/forwardable.rb", "lib/forwardable/impl.rb", "lib/forwardable/version.rb"] spec.bindir = "exe" spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] @@ -86,7 +86,7 @@ # class GetoptLong # Version. - VERSION = "0.1.0" # # Orderings. @@ -1,5 +1,5 @@ # frozen_string_literal: true class Logger - VERSION = "1.4.2" end @@ -16,7 +16,7 @@ Gem::Specification.new do |spec| spec.homepage = "https://.com/ruby/mutex_m" spec.licenses = ["Ruby", "BSD-2-Clause"] - spec.files = [".gitignore", ".travis.yml", "Gemfile", "LICENSE.txt", "README.md", "Rakefile", "bin/console", "bin/setup", "lib/mutex_m.rb", "mutex_m.gemspec"] spec.bindir = "exe" spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] @@ -40,7 +40,7 @@ # module Mutex_m - VERSION = "0.1.0" def Mutex_m.define_aliases(cl) # :nodoc: cl.module_eval %q{ @@ -85,7 +85,7 @@ module Net end # :stopdoc: - VERSION = "0.1.0" FTP_PORT = 21 CRLF = "\r\n" DEFAULT_BLOCKSIZE = BufferedIO::BUFSIZE @@ -388,7 +388,7 @@ module Net #:nodoc: class HTTP < Protocol # :stopdoc: - VERSION = "0.1.0" Revision = %q$Revision$.split[1] HTTPVersion = '1.1' begin @@ -201,7 +201,7 @@ module Net # Unicode", RFC 2152, May 1997. # class IMAP < Protocol - VERSION = "0.1.0" include MonitorMixin if defined?(OpenSSL::SSL) @@ -195,7 +195,7 @@ module Net # class POP3 < Protocol # version of this library - VERSION = "0.1.0" # # Class Parameters @@ -136,7 +136,7 @@ # ticker.add_observer(warner, :call) # ticker.run module Observable - VERSION = "0.1.0" # # Add +observer+ as an observer on this object. So that it will receive @@ -30,7 +30,7 @@ # module Open3 - VERSION = "0.1.0" # Open stdin, stdout, and stderr streams and start external executable. # In addition, a thread to wait for the started process is created. @@ -19,7 +19,7 @@ Gem::Specification.new do |spec| spec.licenses = ["Ruby", "BSD-2-Clause"] spec.required_ruby_version = ">= 2.5.0" - spec.files = [".gitignore", ".travis.yml", "Gemfile", "LICENSE.txt", "README.md", "Rakefile", "bin/console", "bin/setup", "lib/ostruct.rb", "lib/ostruct/version.rb", "ostruct.gemspec"] spec.bindir = "exe" spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] @@ -92,7 +92,7 @@ require "digest" # Needless to say, if you're storing valuable data with PStore, then you should # backup the PStore files from time to time. class PStore - VERSION = "0.1.0" RDWR_ACCESS = {mode: IO::RDWR | IO::CREAT | IO::BINARY, encoding: Encoding::ASCII_8BIT}.freeze RD_ACCESS = {mode: IO::RDONLY | IO::BINARY, encoding: Encoding::ASCII_8BIT}.freeze @@ -1,6 +1,6 @@ Gem::Specification.new do |spec| spec.name = "resolv" - spec.version = "0.1.0" spec.authors = ["Tanaka Akira"] spec.email = ["[email protected]"] @@ -92,7 +92,7 @@ # p a.strip # => nil # module Singleton - VERSION = "0.1.0" # Raises a TypeError to prevent cloning. def clone @@ -1,14 +1,14 @@ Gem::Specification.new do |spec| spec.name = "tempfile" - spec.version = "0.1.0" - spec.authors = ["Yukihiro Matsumoto"] - spec.email = ["[email protected]"] spec.summary = %q{A utility class for managing temporary files.} spec.description = %q{A utility class for managing temporary files.} spec.homepage = "https://.com/ruby/tempfile" - spec.required_ruby_version = Gem::Requirement.new(">= 2.5.0") spec.licenses = ["Ruby", "BSD-2-Clause"] spec.metadata["homepage_uri"] = spec.homepage spec.metadata["source_code_uri"] = spec.homepage @@ -23,7 +23,7 @@ # Copyright:: (C) 2000 Information-technology Promotion Agency, Japan module Timeout - VERSION = "0.1.0" # Raised by Timeout.timeout when the block times out. class Error < RuntimeError @@ -1,14 +1,14 @@ Gem::Specification.new do |spec| spec.name = "tmpdir" - spec.version = "0.1.0" - spec.authors = ["Yukihiro Matsumoto"] - spec.email = ["[email protected]"] spec.summary = %q{Extends the Dir class to manage the OS temporary file path.} spec.description = %q{Extends the Dir class to manage the OS temporary file path.} spec.homepage = "https://.com/ruby/tmpdir" - spec.required_ruby_version = Gem::Requirement.new(">= 2.3.0") spec.licenses = ["Ruby", "BSD-2-Clause"] spec.metadata["homepage_uri"] = spec.homepage spec.metadata["source_code_uri"] = spec.homepage @@ -60,7 +60,7 @@ # by Keiju ISHITSUKA([email protected]) # class Tracer - VERSION = "0.1.0" class << self # display additional debug information (defaults to false) @@ -18,7 +18,7 @@ Gem::Specification.new do |spec| spec.homepage = "https://.com/ruby/tracer" spec.licenses = ["Ruby", "BSD-2-Clause"] - spec.files = [".gitignore", ".travis.yml", "Gemfile", "LICENSE.txt", "README.md", "Rakefile", "bin/console", "bin/setup", "lib/tracer.rb", "lib/tracer/version.rb", "tracer.gemspec"] spec.bindir = "exe" spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] @@ -1,6 +1,6 @@ module URI # :stopdoc: - VERSION_CODE = '001000'.freeze VERSION = VERSION_CODE.scan(/../).collect{|n| n.to_i}.join('.').freeze # :startdoc: end @@ -17,7 +17,7 @@ require "delegate" # class WeakRef < Delegator - VERSION = "0.1.0" ## # RefError is raised when a referenced object has been recycled by the @@ -1,6 +1,6 @@ Gem::Specification.new do |spec| spec.name = "yaml" - spec.version = "0.1.0" spec.authors = ["Aaron Patterson", "SHIBATA Hiroshi"] spec.email = ["[email protected]", "[email protected]"] |