mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Promote rinda to default gems
This commit is contained in:
parent
3eb76e747e
commit
bc374e5cea
4 changed files with 29 additions and 3 deletions
|
@ -60,8 +60,6 @@ Zachary Scott (zzak)
|
||||||
Tanaka Akira (akr)
|
Tanaka Akira (akr)
|
||||||
[lib/resolv.rb]
|
[lib/resolv.rb]
|
||||||
Tanaka Akira (akr)
|
Tanaka Akira (akr)
|
||||||
[lib/rinda/*]
|
|
||||||
Masatoshi SEKI (seki)
|
|
||||||
[lib/rubygems.rb, lib/rubygems/*]
|
[lib/rubygems.rb, lib/rubygems/*]
|
||||||
Eric Hodel (drbrain), Hiroshi SHIBATA (hsbt)
|
Eric Hodel (drbrain), Hiroshi SHIBATA (hsbt)
|
||||||
https://github.com/rubygems/rubygems
|
https://github.com/rubygems/rubygems
|
||||||
|
@ -232,6 +230,9 @@ Zachary Scott (zzak)
|
||||||
aycabta
|
aycabta
|
||||||
https://github.com/ruby/reline
|
https://github.com/ruby/reline
|
||||||
https://rubygems.org/gems/reline
|
https://rubygems.org/gems/reline
|
||||||
|
[lib/rinda/*]
|
||||||
|
Masatoshi SEKI (seki)
|
||||||
|
https://github.com/ruby/rinda
|
||||||
[lib/set.rb]
|
[lib/set.rb]
|
||||||
Akinori MUSHA (knu)
|
Akinori MUSHA (knu)
|
||||||
https://github.com/ruby/set
|
https://github.com/ruby/set
|
||||||
|
|
|
@ -20,7 +20,6 @@ PrettyPrinter:: Implements a pretty printing algorithm for readable structure
|
||||||
RbConfig:: Information of your configure and build of Ruby
|
RbConfig:: Information of your configure and build of Ruby
|
||||||
resolv-replace.rb:: Replace Socket DNS with Resolv
|
resolv-replace.rb:: Replace Socket DNS with Resolv
|
||||||
Resolv:: Thread-aware DNS resolver library in Ruby
|
Resolv:: Thread-aware DNS resolver library in Ruby
|
||||||
Rinda:: The Linda distributed computing paradigm in Ruby
|
|
||||||
Gem:: Package management framework for Ruby
|
Gem:: Package management framework for Ruby
|
||||||
SecureRandom:: Interface for secure random number generator
|
SecureRandom:: Interface for secure random number generator
|
||||||
Shellwords:: Manipulates strings with word parsing rules of UNIX Bourne shell
|
Shellwords:: Manipulates strings with word parsing rules of UNIX Bourne shell
|
||||||
|
@ -75,6 +74,7 @@ Prime:: Prime numbers and factorization library
|
||||||
PStore:: Implements a file based persistence mechanism based on a Hash
|
PStore:: Implements a file based persistence mechanism based on a Hash
|
||||||
Racc:: A LALR(1) parser generator written in Ruby.
|
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
|
||||||
|
Rinda:: The Linda distributed computing paradigm in Ruby
|
||||||
Set:: Provides a class to deal with collections of unordered, unique values
|
Set:: Provides a class to deal with collections of unordered, unique values
|
||||||
Singleton:: Implementation of the Singleton pattern for Ruby
|
Singleton:: Implementation of the Singleton pattern for Ruby
|
||||||
Tempfile:: A utility class for managing temporary files
|
Tempfile:: A utility class for managing temporary files
|
||||||
|
|
24
lib/rinda/rinda.gemspec
Normal file
24
lib/rinda/rinda.gemspec
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
Gem::Specification.new do |spec|
|
||||||
|
spec.name = "rinda"
|
||||||
|
spec.version = "0.1.0"
|
||||||
|
spec.authors = ["Masatoshi SEKI"]
|
||||||
|
spec.email = ["seki@ruby-lang.org"]
|
||||||
|
|
||||||
|
spec.summary = %q{The Linda distributed computing paradigm in Ruby.}
|
||||||
|
spec.description = %q{The Linda distributed computing paradigm in Ruby.}
|
||||||
|
spec.homepage = "https://github.com/ruby/rinda"
|
||||||
|
spec.required_ruby_version = Gem::Requirement.new(">= 2.3.0")
|
||||||
|
spec.licenses = ["Ruby", "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
|
|
@ -64,6 +64,7 @@ $repositories = {
|
||||||
optparse: "ruby/optparse",
|
optparse: "ruby/optparse",
|
||||||
set: "ruby/set",
|
set: "ruby/set",
|
||||||
find: "ruby/find",
|
find: "ruby/find",
|
||||||
|
rinda: "ruby/rinda",
|
||||||
}
|
}
|
||||||
|
|
||||||
def sync_default_gems(gem)
|
def sync_default_gems(gem)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue