[lnkForumImage]
TotalShareware - Download Free Software

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


 

Forums >

comp.lang.ruby

ri and docu

Marc Heiler

11/4/2007 7:26:00 PM

Hi

does anyone of you know where ri actually stores the content of its
request, or how it is generated?

I want to put it onto a local website with links (i am lazy), but
looking at ri/rdoc's source is too cumbersome (i'd actually prefer to
parse the .rb files myself and write something up, instead of reading
other people's complex code :) )
--
Posted via http://www.ruby-....

2 Answers

Ryan Davis

11/7/2007 7:51:00 PM

0


On Nov 4, 2007, at 11:26 , Marc Heiler wrote:

> Hi
>
> does anyone of you know where ri actually stores the content of its
> request, or how it is generated?
>
> I want to put it onto a local website with links (i am lazy), but
> looking at ri/rdoc's source is too cumbersome (i'd actually prefer to
> parse the .rb files myself and write something up, instead of reading
> other people's complex code :) )

504 % cd /usr/local/share/ri/1.8/system/
505 % ls | head -5
ACL
Abbrev
Acceptables
AmbiguousArgument
AmbiguousOption

You can also tell rdoc to generate html... then again, you're not
doing anything new and might be better off using http://rub...


Marc Heiler

11/7/2007 8:19:00 PM

0

> 504 % cd /usr/local/share/ri/1.8/system/
> 505 % ls | head -5
> ACL
> Abbrev
> Acceptables
> AmbiguousArgument
> AmbiguousOption

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