Hi, I'm trying to test my application with Rails 3 beta 3, but I'm missing the great API docs.
I tried rake doc:rails, but it seems to be a little outdated with instructions like "find :all, ..." and "map.connect" on the READMES.
I can't find routing information on API (I'm missing the :shallow option) nor the Resources explanation, for instance.
I also miss ActiveModel::Base... does it exist? I'm planning to replace the dead plugin PassiveRecord with ActiveModel, but can't find any doc in the API...
Is there any way to view the up to date Rails 3 documentation?
I have already used these guides for porting most of my app, but I still miss the API docs for more details.
I would like to know which options each method accepts, for instance, for searching about shallow resources and trying to figure out why I'm getting infinite loop in /users/login (it seems to be related to routing changes, because it works if I disable 'resources :users, :requirements => {:id => /[0-9]+/}'). Maybe :requirements is not supported any more or has changed, but I don' have any API to verify this...
In general API and guides have been revised (except for some), but
there have been so many changes in the code base that I am pretty sure
they will need an iteration cycle to converge.
I think a community effort is needed here. docrails has now public
write access, if you see any piece of documentation that lacks
something or uses previous idioms please just clone docrails from
github, fix it, and up!