Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In the past I used railsbrain.com to have a nice and handy offline api documentation.

But they stop at version 2.3.2

Is there any other solution with latest version.

share|improve this question

8 Answers

up vote 24 down vote accepted

railsapi.com. You can build and download a custom package of docs for ruby versions to 1.9, rails to 2.3.5 and a number of gems.

share|improve this answer
Exactly what I'm looking for, thanks – denisjacquemin Mar 13 '10 at 18:31

UPDATE (2013-05-08): If you are on a Mac try Dash, for Windows/Linux Zeal is still in development.

UPDATE (2012-09-21): railsapi.com it's up to date now, so as the accepted answer suggest give it a go.

railsapi.com it's not good enough for me because it's not up to date (currently 3.1.1), and I don't have internet at home, gotta love third world countries.

I used this commands on my server so I could get the files faster (they were on cache, go figure).

wget -r -k -p http://api.rubyonrails.org/

  • r - recursive
  • k - convert links to point to local files
  • p - get all images, etc needed to display the html pages

Then I compress the folder so I can download it without overhead.

rar a -r rails_api.rar api.rubyonrails.org/

  • a - add files
  • r - recursive

https://gist.github.com/2149669

UPDATE: You can also use yard server (I prefer yard format over rdoc). Install the gem gem install yard, regenerate all the documentation gem rdoc --all --overwrite, and run the server for the gems yard server --gems.

share|improve this answer
1  
+1 for Dash reference. Never heard of it before. I think I'm gonna like it!! – Meltemi May 17 at 23:36

Just not to pass unmentioned, you can also start local gem rdoc server:

$ gem server
Starting gem server on http://localhost:8808/
localhost - - [13/Mar/2010:18:34:44 CET] "GET / HTTP/1.1" 200 22403
- -> /

But it lacks info on core Ruby library.

share|improve this answer
+1 for gem server. Re: missing core library info, I think that the rdoc-data gem will help there. – the Tin Man Mar 17 '11 at 0:26

I recommend bdoc. It is a replacement for gem server that does not require to have a server running and looks much nicer. Just do gem install bdoc; bdoc or check out more details here. You can find bdoc here.

share|improve this answer
I'll try that, thanks – denisjacquemin Aug 12 '11 at 10:18

What about http://railsapi.com/?

share|improve this answer

If you're on a Mac, i've put together a dictionary with Rails 3.0 documentation http://prii.it/blog/rails-3-dictionary-update. I haven't had time to do it for Rails 3 but will do that once i'm in the mood.

Other Rails versions are available too.

share|improve this answer
nice! thanks Priit – denisjacquemin Mar 13 '10 at 18:29

I found Aslam's post on this topic to be the most useful, easy to implement answer to this question, and it works for current version of the Rails API and Rails Guides. Thanks to Aslam for putting it together.

Basically, you clone the current Rails git repo to your computer and then run

bundle exec rake rdoc

from within the rails directory.

From there, you can copy the documentation folder to somewhere else on your computer and run locally from a browser.

Aslam's post also shows you how to generate a copy of the Rails Guides.

share|improve this answer

Some years ago I used to use FXRI, which was quite cool: http://rubyforge.org/projects/fxri/

Though, I have no idea if it still works or if it plays nice with rvm. I guess it has been abandoned. It is a pity though, it was a very nice tool.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.