* 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
This commit is contained in:
usa 2006-12-08 09:13:04 +00:00
Родитель 1636105e74
Коммит f1b36f2997
2 изменённых файлов: 10 добавлений и 9 удалений

Просмотреть файл

@ -1,6 +1,11 @@
Fri Dec 8 18:11:18 2006 NAKAMURA Usaku <usa@ruby-lang.org>
* lib/optparse.rb: cannot put :nodoc: before method definition.
put after it.
Fri Dec 8 17:00:13 2006 NAKAMURA Usaku <usa@ruby-lang.org>
* bin/rdoc: ues File.exist? instead of File.exists.
* bin/rdoc: ues File.exist? instead of File.exists?.
Thu Dec 7 23:50:21 2006 Yukihiro Matsumoto <matz@ruby-lang.org>

Просмотреть файл

@ -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) {