зеркало из https://github.com/github/ruby.git
Update library versions of the default gems.
They are followed up with
8fb02b7a97
This commit is contained in:
Родитель
96b8816793
Коммит
9b9cbbbc17
|
@ -1,6 +1,6 @@
|
|||
Gem::Specification.new do |spec|
|
||||
spec.name = "english"
|
||||
spec.version = "0.7.0"
|
||||
spec.version = "0.7.1"
|
||||
spec.authors = ["Yukihiro Matsumoto"]
|
||||
spec.email = ["matz@ruby-lang.org"]
|
||||
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
module Benchmark
|
||||
VERSION = "0.1.0"
|
||||
VERSION = "0.1.1"
|
||||
end
|
||||
|
|
|
@ -288,7 +288,7 @@
|
|||
#
|
||||
|
||||
class CGI
|
||||
VERSION = "0.1.0"
|
||||
VERSION = "0.2.0"
|
||||
end
|
||||
|
||||
require 'cgi/core'
|
||||
|
|
|
@ -39,7 +39,7 @@
|
|||
# Be advised, RDoc will not detect delegated methods.
|
||||
#
|
||||
class Delegator < BasicObject
|
||||
VERSION = "0.1.0"
|
||||
VERSION = "0.2.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"
|
||||
VERSION = "1.5.0"
|
||||
|
||||
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"
|
||||
VERSION = "1.3.2"
|
||||
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.files = ["forwardable.gemspec", "lib/forwardable.rb", "lib/forwardable/impl.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"
|
||||
VERSION = "0.1.1"
|
||||
|
||||
#
|
||||
# Orderings.
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
class Logger
|
||||
VERSION = "1.4.2"
|
||||
VERSION = "1.4.3"
|
||||
end
|
||||
|
|
|
@ -16,7 +16,7 @@ Gem::Specification.new do |spec|
|
|||
spec.homepage = "https://github.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.files = ["Gemfile", "LICENSE.txt", "README.md", "Rakefile", "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"
|
||||
VERSION = "0.1.1"
|
||||
|
||||
def Mutex_m.define_aliases(cl) # :nodoc:
|
||||
cl.module_eval %q{
|
||||
|
|
|
@ -85,7 +85,7 @@ module Net
|
|||
end
|
||||
|
||||
# :stopdoc:
|
||||
VERSION = "0.1.0"
|
||||
VERSION = "0.1.1"
|
||||
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"
|
||||
VERSION = "0.1.1"
|
||||
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"
|
||||
VERSION = "0.1.1"
|
||||
|
||||
include MonitorMixin
|
||||
if defined?(OpenSSL::SSL)
|
||||
|
|
|
@ -195,7 +195,7 @@ module Net
|
|||
#
|
||||
class POP3 < Protocol
|
||||
# version of this library
|
||||
VERSION = "0.1.0"
|
||||
VERSION = "0.1.1"
|
||||
|
||||
#
|
||||
# Class Parameters
|
||||
|
|
|
@ -136,7 +136,7 @@
|
|||
# ticker.add_observer(warner, :call)
|
||||
# ticker.run
|
||||
module Observable
|
||||
VERSION = "0.1.0"
|
||||
VERSION = "0.1.1"
|
||||
|
||||
#
|
||||
# Add +observer+ as an observer on this object. So that it will receive
|
||||
|
|
|
@ -30,7 +30,7 @@
|
|||
#
|
||||
|
||||
module Open3
|
||||
VERSION = "0.1.0"
|
||||
VERSION = "0.1.1"
|
||||
|
||||
# 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.files = [".gitignore", "Gemfile", "LICENSE.txt", "README.md", "Rakefile", "bin/console", "bin/setup", "lib/ostruct.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"
|
||||
VERSION = "0.1.1"
|
||||
|
||||
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.version = "0.2.0"
|
||||
spec.authors = ["Tanaka Akira"]
|
||||
spec.email = ["akr@fsij.org"]
|
||||
|
||||
|
|
|
@ -92,7 +92,7 @@
|
|||
# p a.strip # => nil
|
||||
#
|
||||
module Singleton
|
||||
VERSION = "0.1.0"
|
||||
VERSION = "0.1.1"
|
||||
|
||||
# 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 = ["matz@ruby-lang.org"]
|
||||
spec.version = "0.1.1"
|
||||
spec.authors = ["Yukihiro Matsumoto"]
|
||||
spec.email = ["matz@ruby-lang.org"]
|
||||
|
||||
spec.summary = %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.required_ruby_version = Gem::Requirement.new(">= 2.5.0")
|
||||
spec.licenses = ["Ruby", "BSD-2-Clause"]
|
||||
spec.required_ruby_version = Gem::Requirement.new(">= 2.5.0")
|
||||
|
||||
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"
|
||||
VERSION = "0.1.1"
|
||||
|
||||
# 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 = ["matz@ruby-lang.org"]
|
||||
spec.version = "0.1.1"
|
||||
spec.authors = ["Yukihiro Matsumoto"]
|
||||
spec.email = ["matz@ruby-lang.org"]
|
||||
|
||||
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://github.com/ruby/tmpdir"
|
||||
spec.required_ruby_version = Gem::Requirement.new(">= 2.3.0")
|
||||
spec.licenses = ["Ruby", "BSD-2-Clause"]
|
||||
spec.required_ruby_version = Gem::Requirement.new(">= 2.3.0")
|
||||
|
||||
spec.metadata["homepage_uri"] = spec.homepage
|
||||
spec.metadata["source_code_uri"] = spec.homepage
|
||||
|
|
|
@ -60,7 +60,7 @@
|
|||
# by Keiju ISHITSUKA(keiju@ishitsuka.com)
|
||||
#
|
||||
class Tracer
|
||||
VERSION = "0.1.0"
|
||||
VERSION = "0.1.1"
|
||||
|
||||
class << self
|
||||
# display additional debug information (defaults to false)
|
||||
|
|
|
@ -18,7 +18,7 @@ Gem::Specification.new do |spec|
|
|||
spec.homepage = "https://github.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.files = ["Gemfile", "LICENSE.txt", "README.md", "Rakefile", "lib/tracer.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_CODE = '001001'.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"
|
||||
VERSION = "0.1.1"
|
||||
|
||||
##
|
||||
# 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.version = "0.1.1"
|
||||
spec.authors = ["Aaron Patterson", "SHIBATA Hiroshi"]
|
||||
spec.email = ["aaron@tenderlovemaking.com", "hsbt@ruby-lang.org"]
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче