views:

11

answers:

1

I really like gem server command which bootstraps the webserver with local RubyGems Documentation Index.

The only problem I have: some gems don't have rdoc files.

How can I add missing rdoc(all gems are mainstream gems, not my own)?


Installed via Bundler; Rails 2.3.5

+1  A: 

You can generate all rdoc of all of your gem with command :

gem rdoc --all
shingara