summaryrefslogtreecommitdiffstats
path: root/lib/optparse.rb
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-12-26 06:50:55 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-12-26 06:50:55 +0000
commit83d7806e039e0ed5e9e1668d6f47526dfe39763b (patch)
tree859ae8648a599fe8e7f381d11754946da317b559 /lib/optparse.rb
parent2b4981c40d27b10dd75221d8cacbc565c2bb0520 (diff)
downloadruby-83d7806e039e0ed5e9e1668d6f47526dfe39763b.tar.gz
ruby-83d7806e039e0ed5e9e1668d6f47526dfe39763b.tar.xz
ruby-83d7806e039e0ed5e9e1668d6f47526dfe39763b.zip
* lib/optparse.rb (OptionParser::List#summarize): gives priority
to latter switches. [ruby-dev:36692] * lib/optparse.rb (OptionParser#summarize): do not append unnecessary line terminator. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@21066 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/optparse.rb')
-rw-r--r--lib/optparse.rb17
1 files changed, 11 insertions, 6 deletions
diff --git a/lib/optparse.rb b/lib/optparse.rb
index e52d5d275..0397382a6 100644
--- a/lib/optparse.rb
+++ b/lib/optparse.rb
@@ -631,17 +631,21 @@ class OptionParser
# method which is called on every option.
#
def summarize(*args, &block)
- list.each do |opt|
+ sum = []
+ list.reverse_each do |opt|
if opt.respond_to?(:summarize) # perhaps OptionParser::Switch
- opt.summarize(*args, &block)
+ s = []
+ opt.summarize(*args) {|l| s << l}
+ sum.concat(s.reverse)
elsif !opt or opt.empty?
- yield("")
+ sum << ""
elsif opt.respond_to?(:each_line)
- opt.each_line(&block)
+ sum.concat([*opt.each_line].reverse)
else
- opt.each(&block)
+ sum.concat([*opt.each].reverse)
end
end
+ sum.reverse_each(&block)
end
def add_banner(to) # :nodoc:
@@ -964,7 +968,8 @@ class OptionParser
# +indent+:: Indentation, defaults to @summary_indent.
#
def summarize(to = [], width = @summary_width, max = width - 1, indent = @summary_indent, &blk)
- visit(:summarize, {}, {}, width, max, indent, &(blk || proc {|l| to << l + $/}))
+ blk ||= proc {|l| to << (l.index($/, -1) ? l : l + $/)}
+ visit(:summarize, {}, {}, width, max, indent, &blk)
to
end