nuno wrote:
Hello, I need to download the api doc and would like to avoid vaccuuming api.rubyonrails.org
If you have Rails installed on your machine, then you already have the documentation installed -- it's wrapped up inside the Rails code. There are two ways to get at it:
1. If you want to view documentation for the gems you have installed, run 'gem_server' from the command line, and point your web browser at http://localhost:8808/.
2. If you're frozen against edge Rails, and you want to generate the documentation in the same style as api.rubyonrails.org, go into your Rails app directory and run 'rake doc:rails' to generate the documentation inside /doc/api.
Chris