views:

105

answers:

4

The documentation at http://rubyonrails.org/documentation appears to be for the latest version of Rails, but I'm working on a Rails 1.2 app. Where can I find relevant documentation?

+5  A: 

I'd just generate it from the source; if you've got a copy of the source in somedir, then this should get you a HTML copy of the docs in docs:

rdoc -f html -o docs somedir
womble
+2  A: 

If you want to browse the Rails documentation online or download a generated one visit www.railsbrain.com. There are links to all versions starting with 1.1.6 up to newest.

kret
A: 

The Agile Web Development with Rails book is from then and covers 1.2.

dylanfm
+1  A: 

I always refer to http://api-dock.com They have rails API docs all the way back, and a nifty ajax search and community features.

Scott Miller