On Oct 26, 2004, at 4:17 PM, James Edward Gray II wrote: > The author has some simple comments before each class I'm trying not > to tamper with. > > If I get it to ignore all those will it keep the first comment? > > If so, how could I do that? Proceed them all with a > > #-- Does this help? #-- # Author's file comments # go here # and so on #++ # RDoc is so cool! Here is # my documentation for the file. #-- # Author's class comments #++ # My documentation for the class. class Foo #-- # Author's method comments #++ # My documentation for the method def foo #... end #-- # Author's method comments #++ # My documentation for the method def bar #... end end #-- # Author's class comments #++ # My documentation for the class. class Bar #-- # Author's method comments #++ # My documentation for the method def foo #... end #-- # Author's method comments #++ # My documentation for the method def bar #... end end