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

Promote yaml to default gems

This commit is contained in:
Hiroshi SHIBATA 2019-11-08 20:18:08 +09:00
parent 2a0ed5691e
commit 8c9438d219
No known key found for this signature in database
GPG key ID: F9CF13417264FAC2
5 changed files with 38 additions and 3 deletions

View file

@ -103,8 +103,6 @@ Zachary Scott (zzak)
YAMADA, Akira (akira)
[lib/weakref.rb]
_unmaintained_
[lib/yaml.rb, lib/yaml/*]
Aaron Patterson (tenderlove), Hiroshi SHIBATA (hsbt)
=== Extensions
@ -269,6 +267,9 @@ Zachary Scott (zzak)
Eric Wong (normalperson)
https://bugs.ruby-lang.org/
https://rubygems.org/gems/webrick
[lib/yaml.rb, lib/yaml/*]
Aaron Patterson (tenderlove), Hiroshi SHIBATA (hsbt)
https://github.com/ruby/yaml
=== Extensions

View file

@ -39,7 +39,6 @@ TSort:: Topological sorting using Tarjan's algorithm
un.rb:: Utilities to replace common UNIX commands
URI:: A Ruby module providing support for Uniform Resource Identifiers
WeakRef:: Allows a referenced object to be garbage-collected
YAML:: Ruby client library for the Psych YAML implementation
== Extensions
@ -88,6 +87,7 @@ Singleton:: Implementation of the Singleton pattern for Ruby
Timeout:: Auto-terminate potentially long-running operations in Ruby
Tracer:: Outputs a source level execution trace of a Ruby program
WEBrick:: An HTTP server toolkit for Ruby
YAML:: Ruby client library for the Psych YAML implementation
== Extensions

3
lib/yaml/version.rb Normal file
View file

@ -0,0 +1,3 @@
module YAML
VERSION = "0.1.0"
end

29
lib/yaml/yaml.gemspec Normal file
View file

@ -0,0 +1,29 @@
begin
require_relative "lib/yaml/version"
rescue LoadError # Fallback to load version file in ruby core repository
require_relative "version"
end
Gem::Specification.new do |spec|
spec.name = "yaml"
spec.version = YAML::VERSION
spec.authors = ["Aaron Patterson", "SHIBATA Hiroshi"]
spec.email = ["aaron@tenderlovemaking.com", "hsbt@ruby-lang.org"]
spec.summary = "YAML Ain't Markup Language"
spec.description = spec.summary
spec.homepage = "https://github.com/ruby/yaml"
spec.license = "BSD-2-Clause"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = spec.homepage
# Specify which files should be added to the gem when it is released.
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
end
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
end

View file

@ -46,6 +46,7 @@
# * https://github.com/ruby/readline-ext
# * https://github.com/ruby/observer
# * https://github.com/ruby/timeout
# * https://github.com/ruby/yaml
#
require 'fileutils'
@ -99,6 +100,7 @@ $repositories = {
readlineext: "ruby/readline-ext",
observer: "ruby/observer",
timeout: "ruby/timeout",
yaml: "ruby/yaml",
}
def sync_default_gems(gem)