[lnkForumImage]
TotalShareware - Download Free Software

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


 

Forums >

comp.lang.ruby

ruby documentation browsing

gmarik

1/14/2007 12:14:00 AM

Hi!

I'm new to ruby, and Ruby rox.

Being a new to Ruby i constantly look into documentation to get help
and so on, but i don't like the way i'm doing it now.

So for gems there's gem server - well it works for me just enough.
For the rest of documentation there's ri.

But what'd like to have is something like gem_server for core ruby
documentation, as it's more convenient for newcomers like me I think.
Documentation can be browsed easily, instead of 'guessing'(ri-like
style)

So does anyone know something that "acts like gem_server" :) for core
ruby docs?
Thanks!

3 Answers

Gregory Brown

1/14/2007 12:31:00 AM

0

On 1/13/07, gmarik <gmarik@gmail.com> wrote:

> So does anyone know something that "acts like gem_server" :) for core
> ruby docs?

You can view the rdoc here: http://ruby-doc...
Also, the reference in the back of Programming Ruby, 2nd Edition
(Pickaxe) is great.

lists

1/14/2007 5:23:00 AM

0


On Jan 13, 2007, at 6:15 PM, gmarik wrote:

> Hi!
>
> I'm new to ruby, and Ruby rox.
>
> Being a new to Ruby i constantly look into documentation to get help
> and so on, but i don't like the way i'm doing it now.
>
> So for gems there's gem server - well it works for me just enough.
> For the rest of documentation there's ri.
>
> But what'd like to have is something like gem_server for core ruby
> documentation, as it's more convenient for newcomers like me I think.
> Documentation can be browsed easily, instead of 'guessing'(ri-like
> style)
>
> So does anyone know something that "acts like gem_server" :) for core
> ruby docs?
> Thanks!
>
>
>

I like fxri: http://rubyforge.org/proj... It's basically a GUI
searchable interface to Ri with a builtin irb.

Jano Svitok

1/14/2007 11:41:00 AM

0

On 1/14/07, gmarik <gmarik@gmail.com> wrote:
> Hi!
>
> I'm new to ruby, and Ruby rox.
>
> Being a new to Ruby i constantly look into documentation to get help
> and so on, but i don't like the way i'm doing it now.
>
> So for gems there's gem server - well it works for me just enough.
> For the rest of documentation there's ri.
>
> But what'd like to have is something like gem_server for core ruby
> documentation, as it's more convenient for newcomers like me I think.
> Documentation can be browsed easily, instead of 'guessing'(ri-like
> style)
>
> So does anyone know something that "acts like gem_server" :) for core
> ruby docs?
> Thanks!

If you run RDoc on the ruby sources, you'll most probably get what you
can see on ruby-doc.org/core. Just generate the docs, and point your
browser to the appropriate files.

(you'll need to specify -od rdoc because doc is already taken)