Look for a ‘call-seq’ in the comment, and override the normal parameter
stuff
# File lib/rdoc/parser/ruby.rb, line 1530
def extract_call_seq(comment, meth)
if comment.sub!(/:?call-seq:(.*?)^\s*\#?\s*$/, '') then
seq = $1
seq.gsub!(/^\s*\#\s*/, '')
meth.call_seq = seq
end
meth
end