[rubygems/rubygems] Use a constant empty tar header to avoid extra allocations
[ruby.git] / lib / find.gemspec
blobcb845e940985e206e8d068c54a24b72fa55999d2
1 name = File.basename(__FILE__, ".gemspec")
2 version = ["lib", Array.new(name.count("-")+1).join("/")].find do |dir|
3   break File.foreach(File.join(__dir__, dir, "#{name.tr('-', '/')}.rb")) do |line|
4     /^\s*VERSION\s*=\s*"(.*)"/ =~ line and break $1
5   end rescue nil
6 end
8 Gem::Specification.new do |spec|
9   spec.name          = name
10   spec.version       = version
11   spec.authors       = ['Kazuki Tsujimoto']
12   spec.email         = ['kazuki@callcc.net']
14   spec.summary       = %q{This module supports top-down traversal of a set of file paths.}
15   spec.description   = %q{This module supports top-down traversal of a set of file paths.}
16   spec.homepage      = "https://github.com/ruby/find"
17   spec.required_ruby_version = Gem::Requirement.new(">= 2.3.0")
18   spec.licenses      = ["Ruby", "BSD-2-Clause"]
20   spec.metadata["homepage_uri"] = spec.homepage
21   spec.metadata["source_code_uri"] = spec.homepage
23   # Specify which files should be added to the gem when it is released.
24   # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
25   spec.files         = Dir.chdir(File.expand_path('..', __FILE__)) do
26     `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
27   end
28   spec.bindir        = "exe"
29   spec.executables   = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
30   spec.require_paths = ["lib"]
31 end