Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where to find old Rails 2.3 Guides

Since Rails 3 is out, all the guides on http://guides.rubyonrails.org/ are for Rails 3. I used to reference the guides for 2.3 a lot. Is there anywhere they're still available?

like image 496
Nathan Hurst Avatar asked Aug 30 '10 23:08

Nathan Hurst


2 Answers

Rails 2.3.8 guides can now be found here: http://guides.rubyonrails.org/v2.3.8/index.html

like image 99
Sidane Avatar answered Oct 20 '22 23:10

Sidane


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

like image 1
Nathan Hurst Avatar answered Oct 21 '22 01:10

Nathan Hurst