We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 30571f9 commit 83e8c23Copy full SHA for 83e8c23
optparse.gemspec
@@ -14,7 +14,10 @@ Gem::Specification.new do |spec|
14
spec.email = ["nobu@ruby-lang.org"]
15
16
spec.summary = %q{OptionParser is a class for command-line option analysis.}
17
- spec.description = %q{OptionParser is a class for command-line option analysis.}
+ spec.description = File.open(File.join(__dir__, "README.md")) do |readme|
18
+ readme.gets("") # heading
19
+ readme.gets("").chomp
20
+ end rescue spec.summary
21
spec.homepage = "https://github.com/ruby/optparse"
22
spec.required_ruby_version = Gem::Requirement.new(">= 2.5.0")
23
spec.licenses = ["Ruby", "BSD-2-Clause"]
0 commit comments