summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-02-01 07:10:08 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-02-01 07:10:08 +0000
commitb2972baaf703e5b663d07b4a6600ca40925ca1da (patch)
tree6d0c4c43abeaab258ac3bac707b123951c01cd6b /lib
parent6668092e38434b7ccd911ec52cd71fe73acc1eba (diff)
downloadruby-b2972baaf703e5b663d07b4a6600ca40925ca1da.tar.gz
ruby-b2972baaf703e5b663d07b4a6600ca40925ca1da.tar.xz
ruby-b2972baaf703e5b663d07b4a6600ca40925ca1da.zip
* lib/optparse.rb (Switch#summarize): strips an equal sign from
short option, and fills right sides in shorter lines. [ruby-talk:326414] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@21926 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib')
-rw-r--r--lib/optparse.rb8
1 files changed, 7 insertions, 1 deletions
diff --git a/lib/optparse.rb b/lib/optparse.rb
index 9c6b3924f..19793f8d4 100644
--- a/lib/optparse.rb
+++ b/lib/optparse.rb
@@ -384,10 +384,16 @@ class OptionParser
left[-1] << if left[-1].empty? then ' ' * 4 else ', ' end << s
end
- left[0] << arg if arg
+ if arg
+ left[0] << (left[1] ? arg.sub(/\A(\[?)=/, '\1') + ',' : arg)
+ end
mlen = left.collect {|ss| ss.length}.max.to_i
while mlen > width and l = left.shift
mlen = left.collect {|ss| ss.length}.max.to_i if l.length == mlen
+ if l.length < width and (r = right[0]) and !r.empty?
+ l = l.to_s.ljust(width) + ' ' + r
+ right.shift
+ end
yield(indent + l)
end