[前][次][番号順一覧][スレッド一覧]

ruby-changes:58668

From: Hiroshi <ko1@a...>
Date: Sat, 9 Nov 2019 07:58:09 +0900 (JST)
Subject: [ruby-changes:58668] 8c9438d219 (master): Promote yaml to default gems

https://git.ruby-lang.org/ruby.git/commit/?id=8c9438d219

From 8c9438d219885fb26ca2e7cfc6ca38dd0bcb3db6 Mon Sep 17 00:00:00 2001
From: Hiroshi SHIBATA <hsbt@r...>
Date: Fri, 8 Nov 2019 20:18:08 +0900
Subject: Promote yaml to default gems


diff --git a/doc/maintainers.rdoc b/doc/maintainers.rdoc
index 57a7aa4..f486729 100644
--- a/doc/maintainers.rdoc
+++ b/doc/maintainers.rdoc
@@ -103,8 +103,6 @@ Zachary Scott (zzak) https://github.com/ruby/ruby/blob/trunk/doc/maintainers.rdoc#L103
   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) https://github.com/ruby/ruby/blob/trunk/doc/maintainers.rdoc#L267
   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
 
diff --git a/doc/standard_library.rdoc b/doc/standard_library.rdoc
index 0ffa6e5..4927ea1 100644
--- a/doc/standard_library.rdoc
+++ b/doc/standard_library.rdoc
@@ -39,7 +39,6 @@ TSort:: Topological sorting using Tarjan's algorithm https://github.com/ruby/ruby/blob/trunk/doc/standard_library.rdoc#L39
 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 https://github.com/ruby/ruby/blob/trunk/doc/standard_library.rdoc#L87
 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
 
diff --git a/lib/yaml/version.rb b/lib/yaml/version.rb
new file mode 100644
index 0000000..b8e83d8
--- /dev/null
+++ b/lib/yaml/version.rb
@@ -0,0 +1,3 @@ https://github.com/ruby/ruby/blob/trunk/lib/yaml/version.rb#L1
+module YAML
+  VERSION = "0.1.0"
+end
diff --git a/lib/yaml/yaml.gemspec b/lib/yaml/yaml.gemspec
new file mode 100644
index 0000000..2272af4
--- /dev/null
+++ b/lib/yaml/yaml.gemspec
@@ -0,0 +1,29 @@ https://github.com/ruby/ruby/blob/trunk/lib/yaml/yaml.gemspec#L1
+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@t...", "hsbt@r..."]
+
+  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
diff --git a/tool/sync_default_gems.rb b/tool/sync_default_gems.rb
index af9a9ae..edebeb3 100644
--- a/tool/sync_default_gems.rb
+++ b/tool/sync_default_gems.rb
@@ -46,6 +46,7 @@ https://github.com/ruby/ruby/blob/trunk/tool/sync_default_gems.rb#L46
 # * 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 = { https://github.com/ruby/ruby/blob/trunk/tool/sync_default_gems.rb#L100
   readlineext: "ruby/readline-ext",
   observer: "ruby/observer",
   timeout: "ruby/timeout",
+  yaml: "ruby/yaml",
 }
 
 def sync_default_gems(gem)
-- 
cgit v0.10.2


--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]