summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-12-08 09:13:04 +0000
committerusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-12-08 09:13:04 +0000
commitf1b36f299793d8a64b6af26468e2ffff9b3700dc (patch)
treeb01bf6e1ae55058210de2defd6c44cdc131d5bc3 /lib
parent1636105e7413d8f2c8b91f9c899d879acdc9464a (diff)
* lib/optparse.rb: cannot put :nodoc: before method definition.
put after it. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11368 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib')
-rw-r--r--lib/optparse.rb12
1 files changed, 4 insertions, 8 deletions
diff --git a/lib/optparse.rb b/lib/optparse.rb
index 8cb29c83e6..4cab6928bb 100644
--- a/lib/optparse.rb
+++ b/lib/optparse.rb
@@ -398,8 +398,7 @@ class OptionParser
self
end
- # :nodoc:
- def add_banner(to)
+ def add_banner(to) # :nodoc:
unless @short or @long
s = desc.join
to << " [" + s + "]..." unless s.empty?
@@ -407,8 +406,7 @@ class OptionParser
to
end
- # :nodoc:
- def match_nonswitch?(str)
+ def match_nonswitch?(str) # :nodoc:
@pattern =~ str unless @short or @long
end
@@ -642,8 +640,7 @@ class OptionParser
end
end
- # :nodoc:
- def add_banner(to)
+ def add_banner(to) # :nodoc:
list.each do |opt|
if opt.respond_to?(:add_banner)
opt.add_banner(to)
@@ -1243,8 +1240,7 @@ class OptionParser
parse_in_order(argv, &nonopt)
end
- # :nodoc:
- def parse_in_order(argv = default_argv, setter = nil, &nonopt)
+ def parse_in_order(argv = default_argv, setter = nil, &nonopt) # :nodoc:
opt, arg, val, rest = nil
nonopt ||= proc {|a| throw :terminate, a}
argv.unshift(arg) if arg = catch(:terminate) {