Since Rails 3 is out, all the guides on http://guides.rub开发者_如何学JAVAyonrails.org/ are for Rails 3. I used to reference the guides for 2.3 a lot. Is there anywhere they're still available?
Rails 2.3.8 guides can now be found here: http://guides.rubyonrails.org/v2.3.8/index.html
After following the instructions from jdl, I found a way to generate the guides. To do so, install RedCloth, create a project, freeze rails (2.3.2 was the highest I could get it to work for), and generate the guides.
sudo gem install -v4.1.1 RedCloth
rails RailsDoc
rake rails:freeze:edge RELEASE=2.3.2
rake doc:guides
The guides are located in doc/guides
You can generate your own local copy.
http://wellrounded.wordpress.com/2007/03/11/rails-creating-a-local-copy-of-the-api-documentation/
精彩评论