Hello, I need to download the api doc and would like to avoid vaccuuming api.rubyonrails.org Is there a .chm version ? Or at least a zipped html version somewhere ? Thanks -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk -~----------~----~----~----~------~----~------~--~---
chris-OIzkuoyqg0kAvxtiuMwx3w@public.gmane.org
2006-Aug-26 14:25 UTC
Re: Where to download api documentation ?
nuno wrote:> Hello, I need to download the api doc and would like to avoid vaccuuming > api.rubyonrails.orgIf you have Rails installed on your machine, then you already have the documentation installed -- it''s wrapped up inside the Rails code. There are two ways to get at it: 1. If you want to view documentation for the gems you have installed, run ''gem_server'' from the command line, and point your web browser at http://localhost:8808/. 2. If you''re frozen against edge Rails, and you want to generate the documentation in the same style as api.rubyonrails.org, go into your Rails app directory and run ''rake doc:rails'' to generate the documentation inside /doc/api. Chris --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk -~----------~----~----~----~------~----~------~--~---
nuno wrote:> Hello, I need to download the api doc and would like to avoid vaccuuming > api.rubyonrails.org > > Is there a .chm version ? Or at least a zipped html version somewhere ?When you install Gems, the relevant HTML documentation (RDoc) is generated for you. If you open a command window and type > gem_server you should see something like: [2006-08-26 15:23:26] INFO WEBrick 1.3.1 [2006-08-26 15:23:26] INFO ruby 1.8.2 (2004-12-25) [i386-mswin32] [2006-08-26 15:23:26] INFO WEBrick::HTTPServer#start: pid=1828 port=8808 You should then be able to browse http://localhost:8808/ to see the documentation. regards Justin --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk -~----------~----~----~----~------~----~------~--~---
Thanks for your answers, I was completely unaware of this trick ! RoR world is full of surprises ;-) -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk -~----------~----~----~----~------~----~------~--~---
On 8/26/06, nuno <rails-mailing-list-ARtvInVfO7ksV2N9l4h3zg@public.gmane.org> wrote:> > Thanks for your answers, I was completely unaware of this trick ! RoR > world is full of surprises ;-)Technically this is a feature of rubygem and rdoc. RoR just simply has this doc like most others. -- -------------- Jon Gretar Borgthorsson http://www.jongretar.net/ --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk -~----------~----~----~----~------~----~------~--~---
Nuno, 1/ > Is there a .chm version ? http://delynnberry.com/pages/rails-chm-documentation/ (MacOS X users can read chm files with ''chamonix'' http://sourceforge.net/projects/chamonix/ ) 2/ There''s also DevBoi, a Firefox plugin that gives easy access to various documentations. http://devboi.mozdev.org/ You can even have it install local/offline version of some docs. Alain --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk -~----------~----~----~----~------~----~------~--~---