Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
ruby 1.9 ri problem

Greetings,

When I try to use Ruby's ri tool in a command prompt window to acquire information about classes, methods, etc. it seems to always fail. For example if I type

ri Array

I get a message saying

Updating class cache with 0 classes... Nothing known about Array

What should I do to configure Ruby's ri tool to work?

Thanks.

NOTE: I am using Vista 64 with Ruby 1.9.1p243 (2009-07-16 revision 24175) [i386-mingw32] installed. (thanks MikeJ)

share|improve this question
What platform are you on? – mikej Oct 16 '09 at 7:25
1  
I am using Vista 64 with Ruby 1.9.1p243 (2009-07-16 revision 24175) [i386-mingw32] installed. – caeious Oct 16 '09 at 14:00

marked as duplicate by Bill the Lizard Aug 26 '11 at 13:17

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

2 Answers

Although this question is old, nobody has yet provided a proper solution. I just ran into the same issue, and found the solution:

gem install rdoc-data

# Regenerate system docs
rdoc-data --install

# Regenerate all gem docs
gem rdoc --all --overwrite

# Regenerate specific gem doc with specific version
gem rdoc gemname -v 1.2.3 --overwrite
share|improve this answer

If you are on rvm, http://kedarm.posterous.com/regenerating-ruby-ri-documentation may be more relevant.

share|improve this answer