On 2 August 2011 18:30, Rubyist Rohit <[email protected]> wrote: > What is ri and rdoc?
RDoc is system that generates documentation for the libraries you install. ri is program that gives you command-line access to the same documentation. As an example, when you look at http://api.rubyonrails.org/ , you're looking at documentation generated by RDoc. By default, when you install a gem, RubyGems also generates the ri and RDoc documentation files for the gem, so that you can access this documentation locally on your computer. 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 [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.

