1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Update library versions of the default gems.

They are followed up with
  8fb02b7a97
This commit is contained in:
Hiroshi SHIBATA 2020-12-22 21:43:30 +09:00
parent 96b8816793
commit 9b9cbbbc17
No known key found for this signature in database
GPG key ID: F9CF13417264FAC2
29 changed files with 35 additions and 35 deletions

View file

@ -1,6 +1,6 @@
Gem::Specification.new do |spec| Gem::Specification.new do |spec|
spec.name = "english" spec.name = "english"
spec.version = "0.7.0" spec.version = "0.7.1"
spec.authors = ["Yukihiro Matsumoto"] spec.authors = ["Yukihiro Matsumoto"]
spec.email = ["matz@ruby-lang.org"] spec.email = ["matz@ruby-lang.org"]

View file

@ -1,3 +1,3 @@
module Benchmark module Benchmark
VERSION = "0.1.0" VERSION = "0.1.1"
end end

View file

@ -288,7 +288,7 @@
# #
class CGI class CGI
VERSION = "0.1.0" VERSION = "0.2.0"
end end
require 'cgi/core' require 'cgi/core'

View file

@ -39,7 +39,7 @@
# Be advised, RDoc will not detect delegated methods. # Be advised, RDoc will not detect delegated methods.
# #
class Delegator < BasicObject class Delegator < BasicObject
VERSION = "0.1.0" VERSION = "0.2.0"
kernel = ::Kernel.dup kernel = ::Kernel.dup
kernel.class_eval do kernel.class_eval do

View file

@ -102,7 +102,7 @@ end
# <tt>:verbose</tt> flags to methods in FileUtils. # <tt>:verbose</tt> flags to methods in FileUtils.
# #
module FileUtils module FileUtils
VERSION = "1.4.1" VERSION = "1.5.0"
def self.private_module_function(name) #:nodoc: def self.private_module_function(name) #:nodoc:
module_function name module_function name

View file

@ -112,7 +112,7 @@ module Forwardable
require 'forwardable/impl' require 'forwardable/impl'
# Version of +forwardable.rb+ # Version of +forwardable.rb+
VERSION = "1.3.1" VERSION = "1.3.2"
FORWARDABLE_VERSION = VERSION FORWARDABLE_VERSION = VERSION
@debug = nil @debug = nil

View file

@ -19,7 +19,7 @@ Gem::Specification.new do |spec|
spec.licenses = ["Ruby", "BSD-2-Clause"] spec.licenses = ["Ruby", "BSD-2-Clause"]
spec.required_ruby_version = '>= 2.4.0' spec.required_ruby_version = '>= 2.4.0'
spec.files = ["forwardable.gemspec", "lib/forwardable.rb", "lib/forwardable/impl.rb", "lib/forwardable/version.rb"] spec.files = ["forwardable.gemspec", "lib/forwardable.rb", "lib/forwardable/impl.rb"]
spec.bindir = "exe" spec.bindir = "exe"
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"] spec.require_paths = ["lib"]

View file

@ -86,7 +86,7 @@
# #
class GetoptLong class GetoptLong
# Version. # Version.
VERSION = "0.1.0" VERSION = "0.1.1"
# #
# Orderings. # Orderings.

View file

@ -1,5 +1,5 @@
# frozen_string_literal: true # frozen_string_literal: true
class Logger class Logger
VERSION = "1.4.2" VERSION = "1.4.3"
end end

View file

@ -16,7 +16,7 @@ Gem::Specification.new do |spec|
spec.homepage = "https://github.com/ruby/mutex_m" spec.homepage = "https://github.com/ruby/mutex_m"
spec.licenses = ["Ruby", "BSD-2-Clause"] 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.files = ["Gemfile", "LICENSE.txt", "README.md", "Rakefile", "lib/mutex_m.rb", "mutex_m.gemspec"]
spec.bindir = "exe" spec.bindir = "exe"
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"] spec.require_paths = ["lib"]

View file

@ -40,7 +40,7 @@
# #
module Mutex_m module Mutex_m
VERSION = "0.1.0" VERSION = "0.1.1"
def Mutex_m.define_aliases(cl) # :nodoc: def Mutex_m.define_aliases(cl) # :nodoc:
cl.module_eval %q{ cl.module_eval %q{

View file

@ -85,7 +85,7 @@ module Net
end end
# :stopdoc: # :stopdoc:
VERSION = "0.1.0" VERSION = "0.1.1"
FTP_PORT = 21 FTP_PORT = 21
CRLF = "\r\n" CRLF = "\r\n"
DEFAULT_BLOCKSIZE = BufferedIO::BUFSIZE DEFAULT_BLOCKSIZE = BufferedIO::BUFSIZE

View file

@ -388,7 +388,7 @@ module Net #:nodoc:
class HTTP < Protocol class HTTP < Protocol
# :stopdoc: # :stopdoc:
VERSION = "0.1.0" VERSION = "0.1.1"
Revision = %q$Revision$.split[1] Revision = %q$Revision$.split[1]
HTTPVersion = '1.1' HTTPVersion = '1.1'
begin begin

View file

@ -201,7 +201,7 @@ module Net
# Unicode", RFC 2152, May 1997. # Unicode", RFC 2152, May 1997.
# #
class IMAP < Protocol class IMAP < Protocol
VERSION = "0.1.0" VERSION = "0.1.1"
include MonitorMixin include MonitorMixin
if defined?(OpenSSL::SSL) if defined?(OpenSSL::SSL)

View file

@ -195,7 +195,7 @@ module Net
# #
class POP3 < Protocol class POP3 < Protocol
# version of this library # version of this library
VERSION = "0.1.0" VERSION = "0.1.1"
# #
# Class Parameters # Class Parameters

View file

@ -136,7 +136,7 @@
# ticker.add_observer(warner, :call) # ticker.add_observer(warner, :call)
# ticker.run # ticker.run
module Observable module Observable
VERSION = "0.1.0" VERSION = "0.1.1"
# #
# Add +observer+ as an observer on this object. So that it will receive # Add +observer+ as an observer on this object. So that it will receive

View file

@ -30,7 +30,7 @@
# #
module Open3 module Open3
VERSION = "0.1.0" VERSION = "0.1.1"
# Open stdin, stdout, and stderr streams and start external executable. # Open stdin, stdout, and stderr streams and start external executable.
# In addition, a thread to wait for the started process is created. # In addition, a thread to wait for the started process is created.

View file

@ -19,7 +19,7 @@ Gem::Specification.new do |spec|
spec.licenses = ["Ruby", "BSD-2-Clause"] spec.licenses = ["Ruby", "BSD-2-Clause"]
spec.required_ruby_version = ">= 2.5.0" 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.files = [".gitignore", "Gemfile", "LICENSE.txt", "README.md", "Rakefile", "bin/console", "bin/setup", "lib/ostruct.rb", "ostruct.gemspec"]
spec.bindir = "exe" spec.bindir = "exe"
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"] spec.require_paths = ["lib"]

View file

@ -92,7 +92,7 @@ require "digest"
# Needless to say, if you're storing valuable data with PStore, then you should # Needless to say, if you're storing valuable data with PStore, then you should
# backup the PStore files from time to time. # backup the PStore files from time to time.
class PStore class PStore
VERSION = "0.1.0" VERSION = "0.1.1"
RDWR_ACCESS = {mode: IO::RDWR | IO::CREAT | IO::BINARY, encoding: Encoding::ASCII_8BIT}.freeze 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 RD_ACCESS = {mode: IO::RDONLY | IO::BINARY, encoding: Encoding::ASCII_8BIT}.freeze

View file

@ -1,6 +1,6 @@
Gem::Specification.new do |spec| Gem::Specification.new do |spec|
spec.name = "resolv" spec.name = "resolv"
spec.version = "0.1.0" spec.version = "0.2.0"
spec.authors = ["Tanaka Akira"] spec.authors = ["Tanaka Akira"]
spec.email = ["akr@fsij.org"] spec.email = ["akr@fsij.org"]

View file

@ -92,7 +92,7 @@
# p a.strip # => nil # p a.strip # => nil
# #
module Singleton module Singleton
VERSION = "0.1.0" VERSION = "0.1.1"
# Raises a TypeError to prevent cloning. # Raises a TypeError to prevent cloning.
def clone def clone

View file

@ -1,14 +1,14 @@
Gem::Specification.new do |spec| Gem::Specification.new do |spec|
spec.name = "tempfile" spec.name = "tempfile"
spec.version = "0.1.0" spec.version = "0.1.1"
spec.authors = ["Yukihiro Matsumoto"] spec.authors = ["Yukihiro Matsumoto"]
spec.email = ["matz@ruby-lang.org"] spec.email = ["matz@ruby-lang.org"]
spec.summary = %q{A utility class for managing temporary files.} spec.summary = %q{A utility class for managing temporary files.}
spec.description = %q{A utility class for managing temporary files.} spec.description = %q{A utility class for managing temporary files.}
spec.homepage = "https://github.com/ruby/tempfile" spec.homepage = "https://github.com/ruby/tempfile"
spec.required_ruby_version = Gem::Requirement.new(">= 2.5.0")
spec.licenses = ["Ruby", "BSD-2-Clause"] spec.licenses = ["Ruby", "BSD-2-Clause"]
spec.required_ruby_version = Gem::Requirement.new(">= 2.5.0")
spec.metadata["homepage_uri"] = spec.homepage spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = spec.homepage spec.metadata["source_code_uri"] = spec.homepage

View file

@ -23,7 +23,7 @@
# Copyright:: (C) 2000 Information-technology Promotion Agency, Japan # Copyright:: (C) 2000 Information-technology Promotion Agency, Japan
module Timeout module Timeout
VERSION = "0.1.0" VERSION = "0.1.1"
# Raised by Timeout.timeout when the block times out. # Raised by Timeout.timeout when the block times out.
class Error < RuntimeError class Error < RuntimeError

View file

@ -1,14 +1,14 @@
Gem::Specification.new do |spec| Gem::Specification.new do |spec|
spec.name = "tmpdir" spec.name = "tmpdir"
spec.version = "0.1.0" spec.version = "0.1.1"
spec.authors = ["Yukihiro Matsumoto"] spec.authors = ["Yukihiro Matsumoto"]
spec.email = ["matz@ruby-lang.org"] spec.email = ["matz@ruby-lang.org"]
spec.summary = %q{Extends the Dir class to manage the OS temporary file path.} 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.description = %q{Extends the Dir class to manage the OS temporary file path.}
spec.homepage = "https://github.com/ruby/tmpdir" spec.homepage = "https://github.com/ruby/tmpdir"
spec.required_ruby_version = Gem::Requirement.new(">= 2.3.0")
spec.licenses = ["Ruby", "BSD-2-Clause"] spec.licenses = ["Ruby", "BSD-2-Clause"]
spec.required_ruby_version = Gem::Requirement.new(">= 2.3.0")
spec.metadata["homepage_uri"] = spec.homepage spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = spec.homepage spec.metadata["source_code_uri"] = spec.homepage

View file

@ -60,7 +60,7 @@
# by Keiju ISHITSUKA(keiju@ishitsuka.com) # by Keiju ISHITSUKA(keiju@ishitsuka.com)
# #
class Tracer class Tracer
VERSION = "0.1.0" VERSION = "0.1.1"
class << self class << self
# display additional debug information (defaults to false) # display additional debug information (defaults to false)

View file

@ -18,7 +18,7 @@ Gem::Specification.new do |spec|
spec.homepage = "https://github.com/ruby/tracer" spec.homepage = "https://github.com/ruby/tracer"
spec.licenses = ["Ruby", "BSD-2-Clause"] 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.files = ["Gemfile", "LICENSE.txt", "README.md", "Rakefile", "lib/tracer.rb", "tracer.gemspec"]
spec.bindir = "exe" spec.bindir = "exe"
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"] spec.require_paths = ["lib"]

View file

@ -1,6 +1,6 @@
module URI module URI
# :stopdoc: # :stopdoc:
VERSION_CODE = '001000'.freeze VERSION_CODE = '001001'.freeze
VERSION = VERSION_CODE.scan(/../).collect{|n| n.to_i}.join('.').freeze VERSION = VERSION_CODE.scan(/../).collect{|n| n.to_i}.join('.').freeze
# :startdoc: # :startdoc:
end end

View file

@ -17,7 +17,7 @@ require "delegate"
# #
class WeakRef < Delegator class WeakRef < Delegator
VERSION = "0.1.0" VERSION = "0.1.1"
## ##
# RefError is raised when a referenced object has been recycled by the # RefError is raised when a referenced object has been recycled by the

View file

@ -1,6 +1,6 @@
Gem::Specification.new do |spec| Gem::Specification.new do |spec|
spec.name = "yaml" spec.name = "yaml"
spec.version = "0.1.0" spec.version = "0.1.1"
spec.authors = ["Aaron Patterson", "SHIBATA Hiroshi"] spec.authors = ["Aaron Patterson", "SHIBATA Hiroshi"]
spec.email = ["aaron@tenderlovemaking.com", "hsbt@ruby-lang.org"] spec.email = ["aaron@tenderlovemaking.com", "hsbt@ruby-lang.org"]