From: Jano Svitok Date: 2008-05-14T20:30:50+09:00 Subject: Re: Ruby (Rdoc) documentation http://www.ruby-doc.org/core/ On Wed, May 14, 2008 at 1:07 PM, Victor Reyes wrote: > Team, > > Is the information found on *http://www.ruby-doc.org/core/* up to date? If > so, is there a way to download it so it could be used off-line? > > Thank you > > Victor > It's easy: - go to your ruby source dir, (c:\ruby\src\ruby-X.X.X-pX for Windows), - run rdoc -o , - ... - PROFIT! (more precisely, you have a copy of ruby-doc/core in for your exact version of ruby) is any dir where you want to place the generated docs. You have to specify one, because default for rdoc ('doc') clashes with ruby's doc dir. You may want to 'gem install rdoc' before this, eric recently reworked rdoc. J.