2020-07-28 11:31:52 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2020-07-22 12:08:06 -04:00
|
|
|
name = File.basename(__FILE__, ".gemspec")
|
2020-07-28 11:31:52 -04:00
|
|
|
version = ["lib", Array.new(name.count("-")+1, "..").join("/")].find do |dir|
|
|
|
|
break File.foreach(File.join(__dir__, dir, "#{name.tr('-', '/')}.rb")) do |line|
|
2020-07-22 12:08:06 -04:00
|
|
|
/^\s*OptionParser::Version\s*=\s*"(.*)"/ =~ line and break $1
|
|
|
|
end rescue nil
|
|
|
|
end
|
|
|
|
|
2020-07-22 05:38:51 -04:00
|
|
|
Gem::Specification.new do |spec|
|
2020-07-22 12:08:06 -04:00
|
|
|
spec.name = name
|
|
|
|
spec.version = version
|
2020-07-22 05:38:51 -04:00
|
|
|
spec.authors = ["Nobu Nakada"]
|
|
|
|
spec.email = ["nobu@ruby-lang.org"]
|
|
|
|
|
|
|
|
spec.summary = %q{OptionParser is a class for command-line option analysis.}
|
|
|
|
spec.description = %q{OptionParser is a class for command-line option analysis.}
|
|
|
|
spec.homepage = "https://github.com/ruby/optparse"
|
2020-07-22 12:05:15 -04:00
|
|
|
spec.required_ruby_version = Gem::Requirement.new(">= 2.5.0")
|
2020-08-18 07:15:20 -04:00
|
|
|
spec.licenses = ["Ruby", "BSD-2-Clause"]
|
2020-07-22 05:38:51 -04:00
|
|
|
|
|
|
|
spec.metadata["homepage_uri"] = spec.homepage
|
|
|
|
spec.metadata["source_code_uri"] = spec.homepage
|
|
|
|
|
|
|
|
spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
|
2021-03-29 02:26:18 -04:00
|
|
|
`git ls-files -z`.split("\x0").reject { |f|
|
|
|
|
f.match(%r{\A(?:(?:test|spec|features)/|Gemfile|\.(?:editor|git))})
|
|
|
|
}
|
2020-07-22 05:38:51 -04:00
|
|
|
end
|
|
|
|
spec.bindir = "exe"
|
2020-07-23 05:31:23 -04:00
|
|
|
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
|
2020-07-22 05:38:51 -04:00
|
|
|
spec.require_paths = ["lib"]
|
|
|
|
end
|