[rubygems/rubygems] Use a constant empty tar header to avoid extra allocations
[ruby.git] / lib / prettyprint.gemspec
bloba18adb174be2a88c13602f6e14bc40e8061bc4b8
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{Implements a pretty printing algorithm for readable structure.}
15   spec.description   = %q{Implements a pretty printing algorithm for readable structure.}
16   spec.homepage      = "https://github.com/ruby/prettyprint"
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   spec.files         = Dir.chdir(File.expand_path('..', __FILE__)) do
24     `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
25   end
26   spec.bindir        = "exe"
27   spec.executables   = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
28   spec.require_paths = ["lib"]
29 end