[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

How to generate local API documentation?

Stephan Dale

6/17/2007 4:38:00 PM

Hi all.

I'm fairly new to Ruby and I'm trying to generate a local copy of the
docs for the core and standard API, as shown online at
http://www.rub...

I ran rdoc in my ruby installation directory (/usr/lib/ruby) but it ate
all my memory so I had to kill it.

Next, I ran rdoc in /usr/lib/ruby/1.8, which worked but produced
documentation that doesn't contain details of certain parts of the
language. For example, searching for "kind_of" reveals that the
assert_kind_of (Test::Unit::Assertions) method is documented, but the
kind_of? (Object) method isn't.

How can I generate local documentation?

Many thanks.

Steph

P.S. Note that I installed ruby with a doc use flag, so ri works
properly, but I couldn't find any html documentation on my system.

--
Posted via http://www.ruby-....

3 Answers

Stephan Dale

6/18/2007 9:10:00 AM

0

Well I've found out why I can't generate core API docs using rdoc -
because Ruby is installed as a .so library, hence there are no .rb or .c
for rdoc to parse.

I've downloaded the documentation from
http://www.ruby-doc.org/... but the ruby version is not exactly
the same as the one I've got installed, which could obviously lead to
problems in the future.

Does anyone know whether there's any way I can generate html
documentation from the ri docs or the .so libraries?

--
Posted via http://www.ruby-....

Jano Svitok

6/18/2007 9:26:00 AM

0

On 6/18/07, Stephan Dale <ruby-forum@mindspill.net> wrote:
> Well I've found out why I can't generate core API docs using rdoc -
> because Ruby is installed as a .so library, hence there are no .rb or .c
> for rdoc to parse.
>
> I've downloaded the documentation from
> http://www.ruby-doc.org/... but the ruby version is not exactly
> the same as the one I've got installed, which could obviously lead to
> problems in the future.
>
> Does anyone know whether there's any way I can generate html
> documentation from the ri docs or the .so libraries?

Download source package (either one for your distribution or the
"upstream" source tar from ruby-lang.org). Unpack anywhere (e.g. you
home dir, /usr/src, /tmp,...). From the top directory (where all the
c and .h files are located) run rdoc -o output_path, or add more
arguments to finetune the output. When it's finished, you will have
the docs in output_path. The -o argument is important, because rdoc by
default creates directory "doc" but here the one is already created,
so you have to point rdoc to some other place.

J.

Stephan Dale

6/18/2007 10:15:00 AM

0

Thank you Jano, that worked a treat!

--
Posted via http://www.ruby-....