Promote find to default gems
This commit is contained in:
parent
6509652c13
commit
dfda2f739b
@ -48,8 +48,6 @@ Zachary Scott (zzak)
|
|||||||
_unmaintained_
|
_unmaintained_
|
||||||
[lib/erb.rb]
|
[lib/erb.rb]
|
||||||
Masatoshi SEKI (seki), Takashi Kokubun (k0kubun)
|
Masatoshi SEKI (seki), Takashi Kokubun (k0kubun)
|
||||||
[lib/find.rb]
|
|
||||||
Kazuki Tsujimoto (ktsj)
|
|
||||||
[lib/mkmf.rb]
|
[lib/mkmf.rb]
|
||||||
_unmaintained_
|
_unmaintained_
|
||||||
[lib/open-uri.rb]
|
[lib/open-uri.rb]
|
||||||
@ -146,6 +144,9 @@ Zachary Scott (zzak)
|
|||||||
_unmaintained_
|
_unmaintained_
|
||||||
https://github.com/ruby/fileutils
|
https://github.com/ruby/fileutils
|
||||||
https://rubygems.org/gems/fileutils
|
https://rubygems.org/gems/fileutils
|
||||||
|
[lib/find.rb]
|
||||||
|
Kazuki Tsujimoto (ktsj)
|
||||||
|
https://github.com/ruby/find
|
||||||
[lib/forwardable.rb]
|
[lib/forwardable.rb]
|
||||||
Keiju ISHITSUKA (keiju)
|
Keiju ISHITSUKA (keiju)
|
||||||
https://github.com/ruby/forwardable
|
https://github.com/ruby/forwardable
|
||||||
|
@ -13,7 +13,6 @@ Base64:: Support for encoding and decoding binary data using a Base64 representa
|
|||||||
DEBUGGER__:: Debugging functionality for Ruby
|
DEBUGGER__:: Debugging functionality for Ruby
|
||||||
DRb:: Distributed object system for Ruby
|
DRb:: Distributed object system for Ruby
|
||||||
ERB:: An easy to use but powerful templating system for Ruby
|
ERB:: An easy to use but powerful templating system for Ruby
|
||||||
Find:: This module supports top-down traversal of a set of file paths
|
|
||||||
MakeMakefile:: Module used to generate a Makefile for C extensions
|
MakeMakefile:: Module used to generate a Makefile for C extensions
|
||||||
OpenURI:: An easy-to-use wrapper for Net::HTTP, Net::HTTPS and Net::FTP
|
OpenURI:: An easy-to-use wrapper for Net::HTTP, Net::HTTPS and Net::FTP
|
||||||
PP:: Provides a PrettyPrinter for Ruby objects
|
PP:: Provides a PrettyPrinter for Ruby objects
|
||||||
@ -55,6 +54,7 @@ Delegator:: Provides three abilities to delegate method calls to an object
|
|||||||
DidYouMean:: "Did you mean?" experience in Ruby
|
DidYouMean:: "Did you mean?" experience in Ruby
|
||||||
English.rb:: Require 'English.rb' to reference global variables with less cryptic names
|
English.rb:: Require 'English.rb' to reference global variables with less cryptic names
|
||||||
FileUtils:: Several file utility methods for copying, moving, removing, etc
|
FileUtils:: Several file utility methods for copying, moving, removing, etc
|
||||||
|
Find:: This module supports top-down traversal of a set of file paths
|
||||||
Forwardable:: Provides delegation of specified methods to a designated object
|
Forwardable:: Provides delegation of specified methods to a designated object
|
||||||
GetoptLong:: Parse command line options similar to the GNU C getopt_long()
|
GetoptLong:: Parse command line options similar to the GNU C getopt_long()
|
||||||
IPAddr:: Provides methods to manipulate IPv4 and IPv6 IP addresses
|
IPAddr:: Provides methods to manipulate IPv4 and IPv6 IP addresses
|
||||||
|
24
lib/find.gemspec
Normal file
24
lib/find.gemspec
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
Gem::Specification.new do |spec|
|
||||||
|
spec.name = "find"
|
||||||
|
spec.version = "0.1.0"
|
||||||
|
spec.authors = ['Kazuki Tsujimoto']
|
||||||
|
spec.email = ['kazuki@callcc.net']
|
||||||
|
|
||||||
|
spec.summary = %q{This module supports top-down traversal of a set of file paths.}
|
||||||
|
spec.description = %q{This module supports top-down traversal of a set of file paths.}
|
||||||
|
spec.homepage = "https://github.com/ruby/find"
|
||||||
|
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
|
@ -63,6 +63,7 @@ $repositories = {
|
|||||||
bigdecimal: "ruby/bigdecimal",
|
bigdecimal: "ruby/bigdecimal",
|
||||||
optparse: "ruby/optparse",
|
optparse: "ruby/optparse",
|
||||||
set: "ruby/set",
|
set: "ruby/set",
|
||||||
|
find: "ruby/find",
|
||||||
}
|
}
|
||||||
|
|
||||||
def sync_default_gems(gem)
|
def sync_default_gems(gem)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user