[BUG] RDoc lists classes twice

G

Gavin Kistner

Given the following two file test case, RDoc lists each class/module
twice in the Classes frame.

Adding "class Foo; end" to the top of the second file fixes this problem.

(Is rdoc.sourceforge.net still active, and the appropriate place for bug
reports, or now that it's been bundled into Ruby is there somewhere
better (other than this list) for official reports?)

==========
| test1.rb |
=======================================================
class Foo; end

module Foo::Mod1
def mod1; end
end

class Foo
include Foo::Mod1
def foo1; end
end

class Foo::Bar
def bar1; end
end
=======================================================


==========
| test2.rb |
=======================================================
module Foo::Mod2
def mod2; end
end

class Foo
include Foo::Mod2
def foo2; end
end

class Foo::Bar
def bar2; end
end
=======================================================



gavinkis% rdoc -v
RDoc V1.0pr1: 2004/01/12 16:06:01 (1.1.2.2)
 
D

Dave Thomas

(Is rdoc.sourceforge.net still active, and the appropriate place for
bug reports, or now that it's been bundled into Ruby is there
somewhere better (other than this list) for official reports?)

Send them to me directly


Cheers

Dave
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,968
Messages
2,570,150
Members
46,697
Latest member
AugustNabo

Latest Threads

Top