From: "trans. (T. Onoma)" Date: 2004-10-31T12:59:14+09:00 Subject: Re: RDoc duplicate methods Okay I figured it out. It's related to the problem I reported before --I have a number of files with odd file names that include characters like /[=?&<>]/. I'm using the rake component to generate the rdocs, but it doesn't quote-escape the file names when it generates the rdoc command. So it does weird things. I had to do this for now and remove the offending files. RDOC_INCLUDE = [ 'README', 'VERSION', 'CHANGELOG', 'TODO', 'COPYING', 'lib/raspberry/atom/**/*.rb' ] RDOC_EXCLUDE = [ 'lib/raspberry/atom/*.rb', 'lib/raspberry/atom/**/*\=*.rb', 'lib/raspberry/atom/**/*\?*.rb', 'lib/raspberry/atom/**/*\&*', 'lib/raspberry/atom/**/*\<*.rb', 'lib/raspberry/atom/**/*\>*.rb' ] I need a real fix though. T.