From: Gregory Brown Date: 2007-07-29T00:44:16+09:00 Subject: Re: Shut up, RDoc! On 7/28/07, Trans wrote: > Can someone please tell me how shut RDoc up. Every time I run it I > get: > > lib/facets.rb:49:29: Skipping require of dynamic string: "facets/ > #{lib}" > > I've tried everything I can think of to suppress this output. have you tried: require "facets/some_lib" require "facets/another_lib" ... You can also of course build up that string and then eval it, but that seems particularly nasty. IIRC, this was eventually fixed in newer versions of ruby, but I may be mistaken.