[rubygems/rubygems] Use a constant empty tar header to avoid extra allocations
[ruby.git] / lib / tempfile.gemspec
blob0b362b0a86763db4736456eea45fdf382723dad9
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       = ["Yukihiro Matsumoto"]
12   spec.email         = ["matz@ruby-lang.org"]
14   spec.summary       = %q{A utility class for managing temporary files.}
15   spec.description   = %q{A utility class for managing temporary files.}
16   spec.homepage      = "https://github.com/ruby/tempfile"
17   spec.licenses      = ["Ruby", "BSD-2-Clause"]
18   spec.required_ruby_version = Gem::Requirement.new(">= 2.5.0")
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   gemspec = File.basename(__FILE__)
26   spec.files = IO.popen(%w[git ls-files -z], chdir: __dir__, err: IO::NULL, exception: false) do |ls|
27     ls.readlines("\x0", chomp: true).reject do |f|
28       (f == gemspec) ||
29         f.start_with?(*%w[bin/ test/ spec/ features/ .git Gemfile])
30     end
31   end
32   spec.require_paths = ["lib"]
33 end