From: Michael Fellinger Date: 2007-07-29T03:55:39+09:00 Subject: Re: Shut up, RDoc! > > > 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" > > ... > > Sigh. Yea, guess I will have to. You can also do: %w[foo bar].each{|l| require("facets/" + l)} That will restore your peace :)