Promote yaml to default gems
This commit is contained in:
parent
2a0ed5691e
commit
8c9438d219
@ -103,8 +103,6 @@ Zachary Scott (zzak)
|
|||||||
YAMADA, Akira (akira)
|
YAMADA, Akira (akira)
|
||||||
[lib/weakref.rb]
|
[lib/weakref.rb]
|
||||||
_unmaintained_
|
_unmaintained_
|
||||||
[lib/yaml.rb, lib/yaml/*]
|
|
||||||
Aaron Patterson (tenderlove), Hiroshi SHIBATA (hsbt)
|
|
||||||
|
|
||||||
=== Extensions
|
=== Extensions
|
||||||
|
|
||||||
@ -269,6 +267,9 @@ Zachary Scott (zzak)
|
|||||||
Eric Wong (normalperson)
|
Eric Wong (normalperson)
|
||||||
https://bugs.ruby-lang.org/
|
https://bugs.ruby-lang.org/
|
||||||
https://rubygems.org/gems/webrick
|
https://rubygems.org/gems/webrick
|
||||||
|
[lib/yaml.rb, lib/yaml/*]
|
||||||
|
Aaron Patterson (tenderlove), Hiroshi SHIBATA (hsbt)
|
||||||
|
https://github.com/ruby/yaml
|
||||||
|
|
||||||
=== Extensions
|
=== Extensions
|
||||||
|
|
||||||
|
@ -39,7 +39,6 @@ TSort:: Topological sorting using Tarjan's algorithm
|
|||||||
un.rb:: Utilities to replace common UNIX commands
|
un.rb:: Utilities to replace common UNIX commands
|
||||||
URI:: A Ruby module providing support for Uniform Resource Identifiers
|
URI:: A Ruby module providing support for Uniform Resource Identifiers
|
||||||
WeakRef:: Allows a referenced object to be garbage-collected
|
WeakRef:: Allows a referenced object to be garbage-collected
|
||||||
YAML:: Ruby client library for the Psych YAML implementation
|
|
||||||
|
|
||||||
== Extensions
|
== Extensions
|
||||||
|
|
||||||
@ -88,6 +87,7 @@ Singleton:: Implementation of the Singleton pattern for Ruby
|
|||||||
Timeout:: Auto-terminate potentially long-running operations in Ruby
|
Timeout:: Auto-terminate potentially long-running operations in Ruby
|
||||||
Tracer:: Outputs a source level execution trace of a Ruby program
|
Tracer:: Outputs a source level execution trace of a Ruby program
|
||||||
WEBrick:: An HTTP server toolkit for Ruby
|
WEBrick:: An HTTP server toolkit for Ruby
|
||||||
|
YAML:: Ruby client library for the Psych YAML implementation
|
||||||
|
|
||||||
== Extensions
|
== Extensions
|
||||||
|
|
||||||
|
3
lib/yaml/version.rb
Normal file
3
lib/yaml/version.rb
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
module YAML
|
||||||
|
VERSION = "0.1.0"
|
||||||
|
end
|
29
lib/yaml/yaml.gemspec
Normal file
29
lib/yaml/yaml.gemspec
Normal 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
|
@ -46,6 +46,7 @@
|
|||||||
# * https://github.com/ruby/readline-ext
|
# * https://github.com/ruby/readline-ext
|
||||||
# * https://github.com/ruby/observer
|
# * https://github.com/ruby/observer
|
||||||
# * https://github.com/ruby/timeout
|
# * https://github.com/ruby/timeout
|
||||||
|
# * https://github.com/ruby/yaml
|
||||||
#
|
#
|
||||||
|
|
||||||
require 'fileutils'
|
require 'fileutils'
|
||||||
@ -99,6 +100,7 @@ $repositories = {
|
|||||||
readlineext: "ruby/readline-ext",
|
readlineext: "ruby/readline-ext",
|
||||||
observer: "ruby/observer",
|
observer: "ruby/observer",
|
||||||
timeout: "ruby/timeout",
|
timeout: "ruby/timeout",
|
||||||
|
yaml: "ruby/yaml",
|
||||||
}
|
}
|
||||||
|
|
||||||
def sync_default_gems(gem)
|
def sync_default_gems(gem)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user