What's the best Ruby documentation resource?

Some things I'm looking for:

  • Offline
  • Easy to keep up-to-date
  • CLI support and fast
  • Good for reference AND for browsing and learning new things
  • Vim integration would be nice but not necessary
  • Bonus if it covers Rails too

Coming from C on Unix, I really like the man page format and interface. Something like that would be ideal.

I like the PHP documentation for similar reasons. http://php.net/foo I find similar to man foo: synopsis up front, plus more info, examples and links to related calls on the same page.

The documentation I've found for Ruby so far has all been big framed HTML sites that are great for reference -- I particularly like how you can dig down to the source for just about anything -- but I dislike using the browser and I don't find these interfaces very good for discovery.

link|improve this question

feedback

2 Answers

up vote 5 down vote accepted

Check out the ri tool. eg.

ri Array#sort

With output:

------------------------------------------------------------- Array#sort
 array.sort                   -> an_array 
 array.sort {| a,b | block }  -> an_array 
------------------------------------------------------------------------
 Returns a new array created by sorting _self_. ...
link|improve this answer
I am liking ri -f ansi -T! Is it possible by ri or some other tool to also see the implementation of Array#sort ? – user1015384 Nov 10 '11 at 14:51
OK awesome, pry can show the source using the same syntax, plus source of C-implemented methods when the pry-doc gem is present github.com/pry/pry/wiki/Source-browsing – user1015384 Nov 10 '11 at 15:25
feedback

I think rdoc along with it's command line interfaces is close to what you're looking for.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.