mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Promote singleton to default gems
This commit is contained in:
parent
40e161a612
commit
91135f6d29
5 changed files with 38 additions and 5 deletions
|
@ -105,8 +105,6 @@ Zachary Scott (zzak)
|
||||||
Tanaka Akira (akr)
|
Tanaka Akira (akr)
|
||||||
[lib/shellwords.rb]
|
[lib/shellwords.rb]
|
||||||
Akinori MUSHA (knu)
|
Akinori MUSHA (knu)
|
||||||
[lib/singleton.rb]
|
|
||||||
Yukihiro Matsumoto (matz)
|
|
||||||
[lib/tempfile.rb]
|
[lib/tempfile.rb]
|
||||||
_unmaintained_
|
_unmaintained_
|
||||||
[lib/tmpdir.rb]
|
[lib/tmpdir.rb]
|
||||||
|
@ -220,6 +218,9 @@ Zachary Scott (zzak)
|
||||||
[lib/rss.rb, lib/rss/*]
|
[lib/rss.rb, lib/rss/*]
|
||||||
Kouhei Sutou (kou)
|
Kouhei Sutou (kou)
|
||||||
https://github.com/ruby/rss
|
https://github.com/ruby/rss
|
||||||
|
[lib/singleton.rb]
|
||||||
|
Yukihiro Matsumoto (matz)
|
||||||
|
https://github.com/ruby/singleton
|
||||||
[lib/thwait.rb]
|
[lib/thwait.rb]
|
||||||
Keiju ISHITSUKA (keiju)
|
Keiju ISHITSUKA (keiju)
|
||||||
https://github.com/ruby/thwait
|
https://github.com/ruby/thwait
|
||||||
|
|
|
@ -41,7 +41,6 @@ Gem:: Package management framework for Ruby
|
||||||
SecureRandom:: Interface for secure random number generator
|
SecureRandom:: Interface for secure random number generator
|
||||||
Set:: Provides a class to deal with collections of unordered, unique values
|
Set:: Provides a class to deal with collections of unordered, unique values
|
||||||
Shellwords:: Manipulates strings with word parsing rules of UNIX Bourne shell
|
Shellwords:: Manipulates strings with word parsing rules of UNIX Bourne shell
|
||||||
Singleton:: Implementation of the Singleton pattern for Ruby
|
|
||||||
Tempfile:: A utility class for managing temporary files
|
Tempfile:: A utility class for managing temporary files
|
||||||
Time:: Extends the Time class with methods for parsing and conversion
|
Time:: Extends the Time class with methods for parsing and conversion
|
||||||
Timeout:: Auto-terminate potentially long-running operations in Ruby
|
Timeout:: Auto-terminate potentially long-running operations in Ruby
|
||||||
|
@ -87,6 +86,7 @@ Racc:: A LALR(1) parser generator written in Ruby.
|
||||||
RDoc:: Produces HTML and command-line documentation for Ruby
|
RDoc:: Produces HTML and command-line documentation for Ruby
|
||||||
REXML:: An XML toolkit for Ruby
|
REXML:: An XML toolkit for Ruby
|
||||||
RSS:: Family of libraries that support various formats of XML "feeds"
|
RSS:: Family of libraries that support various formats of XML "feeds"
|
||||||
|
Singleton:: Implementation of the Singleton pattern for 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
|
||||||
|
|
||||||
|
|
27
lib/singleton/singleton.gemspec
Normal file
27
lib/singleton/singleton.gemspec
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
begin
|
||||||
|
require_relative "lib/singleton/version"
|
||||||
|
rescue LoadError # Fallback to load version file in ruby core repository
|
||||||
|
require_relative "version"
|
||||||
|
end
|
||||||
|
|
||||||
|
Gem::Specification.new do |spec|
|
||||||
|
spec.name = "singleton"
|
||||||
|
spec.version = Singleton::VERSION
|
||||||
|
spec.authors = ["Yukihiro Matsumoto"]
|
||||||
|
spec.email = ["matz@ruby-lang.org"]
|
||||||
|
|
||||||
|
spec.summary = %q{The Singleton module implements the Singleton pattern.}
|
||||||
|
spec.description = spec.summary
|
||||||
|
spec.homepage = "https://github.com/ruby/singleton"
|
||||||
|
spec.license = "BSD-2-Clause"
|
||||||
|
|
||||||
|
spec.metadata["homepage_uri"] = spec.homepage
|
||||||
|
spec.metadata["source_code_uri"] = spec.homepage
|
||||||
|
|
||||||
|
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
|
3
lib/singleton/version.rb
Normal file
3
lib/singleton/version.rb
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
module Singleton
|
||||||
|
VERSION = "0.1.0"
|
||||||
|
end
|
|
@ -33,6 +33,7 @@
|
||||||
# * https://github.com/ruby/e2mmap
|
# * https://github.com/ruby/e2mmap
|
||||||
# * https://github.com/ruby/mutex_m
|
# * https://github.com/ruby/mutex_m
|
||||||
# * https://github.com/ruby/racc
|
# * https://github.com/ruby/racc
|
||||||
|
# * https://github.com/ruby/singleton
|
||||||
#
|
#
|
||||||
|
|
||||||
require 'fileutils'
|
require 'fileutils'
|
||||||
|
@ -72,7 +73,8 @@ $repositories = {
|
||||||
forwardable: "ruby/forwardable",
|
forwardable: "ruby/forwardable",
|
||||||
e2mmap: "ruby/e2mmap",
|
e2mmap: "ruby/e2mmap",
|
||||||
mutex_m: "ruby/mutex_m",
|
mutex_m: "ruby/mutex_m",
|
||||||
racc: "ruby/racc"
|
racc: "ruby/racc",
|
||||||
|
singleton: "ruby/singleton"
|
||||||
}
|
}
|
||||||
|
|
||||||
def sync_default_gems(gem)
|
def sync_default_gems(gem)
|
||||||
|
@ -210,7 +212,7 @@ def sync_default_gems(gem)
|
||||||
rm_rf("test/racc/lib")
|
rm_rf("test/racc/lib")
|
||||||
rm_rf("lib/racc/cparse-jruby.jar")
|
rm_rf("lib/racc/cparse-jruby.jar")
|
||||||
`git checkout ext/racc/cparse/README ext/racc/cparse/depend`
|
`git checkout ext/racc/cparse/README ext/racc/cparse/depend`
|
||||||
when "rexml", "rss", "matrix", "irb", "csv", "logger", "ostruct", "webrick", "fileutils", "forwardable", "prime", "tracer", "ipaddr", "mutex_m"
|
when "rexml", "rss", "matrix", "irb", "csv", "logger", "ostruct", "webrick", "fileutils", "forwardable", "prime", "tracer", "ipaddr", "mutex_m", "singleton"
|
||||||
sync_lib gem
|
sync_lib gem
|
||||||
else
|
else
|
||||||
end
|
end
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue