[rubygems/rubygems] Use a constant empty tar header to avoid extra allocations
[ruby.git] / lib / pp.gemspec
blob27a92a8ce4cb46a5551607906371e03101cc1e9f
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       = ["Tanaka Akira"]
12   spec.email         = ["akr@fsij.org"]
14   spec.summary       = %q{Provides a PrettyPrinter for Ruby objects}
15   spec.description   = %q{Provides a PrettyPrinter for Ruby objects}
16   spec.homepage      = "https://github.com/ruby/pp"
17   spec.licenses      = ["Ruby", "BSD-2-Clause"]
19   spec.required_ruby_version = Gem::Requirement.new(">= 2.7.0")
21   spec.metadata["homepage_uri"] = spec.homepage
22   spec.metadata["source_code_uri"] = spec.homepage
24   spec.files         = %w[
25     LICENSE.txt
26     lib/pp.rb
27     pp.gemspec
28   ]
29   spec.bindir        = "exe"
30   spec.executables   = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
31   spec.require_paths = ["lib"]
33   spec.add_dependency "prettyprint"
34 end