mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
ba99eae2a5
As splitting by NUL means to allow the file names to contain newlines, path names should match at beginning-of-string instead of beginning-of-line. https://github.com/ruby/optparse/commit/df3933aa2b
29 lines
1.1 KiB
Ruby
29 lines
1.1 KiB
Ruby
name = File.basename(__FILE__, ".gemspec")
|
|
version = nil
|
|
["lib", ".."].find do |dir|
|
|
version = File.foreach(File.join(__dir__, dir, "#{name}.rb")) do |line|
|
|
/^\s*OptionParser::Version\s*=\s*"(.*)"/ =~ line and break $1
|
|
end rescue nil
|
|
end
|
|
|
|
Gem::Specification.new do |spec|
|
|
spec.name = name
|
|
spec.version = version
|
|
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"
|
|
spec.required_ruby_version = Gem::Requirement.new(">= 2.5.0")
|
|
|
|
spec.metadata["homepage_uri"] = spec.homepage
|
|
spec.metadata["source_code_uri"] = spec.homepage
|
|
|
|
spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
|
|
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{\A(?:test|spec|features)/}) }
|
|
end
|
|
spec.bindir = "exe"
|
|
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
|
|
spec.require_paths = ["lib"]
|
|
end
|