RDoc is the default embedded documentation generator for Ruby. Rdoc generates structured documentation that can be accessed via a web browser or the command-line by analyzing the code and specially formatted comments. Even in the absence of comments, rdoc will generate documentation using a programs ...

learn more… | top users | synonyms

21
votes
2answers
2k views

Nothing known about… when trying ri String#upcase Ruby

I have just installed the RVM and I am reading The Well-Grounded Rubyist book. In the first chapter I am supposed to try ri String#upcase to view documentation on the upcase method, however I get a ...
24
votes
3answers
10k views

Good tutorials on how to use rdoc?

Are there good tutorials on how to use rdoc: how to comment the source code how to generate documentation how to put it online I cannot find any good information for this.
7
votes
2answers
899 views

Can you install documentation for existing gems?

Rubyinside mentioned a blog post on how to speed up gem installation by not installing RI or RDoc. Is it possible to install a gem and subsequently install documentation at a later date, so you can ...
10
votes
9answers
10k views

How do I generate RDOC for (all of) Rails?

I can do sudo gem rdoc activerecord --no-ri and sudo gem rdoc actionpack --no-ri both of which give me good docs. But sudo gem rdoc rails --no-ri gives me pretty much nothing, as the Rails ...
12
votes
2answers
5k views

Why does my Ruby 'ri' tool not return results in command prompt? [duplicate]

Possible Duplicate: ruby 1.9 ri problem Greetings, When I try to use Ruby's ri tool in a command prompt window to acquire information about classes, methods, etc. it seems to always fail. ...
9
votes
3answers
8k views

no such file to load — rdoc/task

When I run rake db:create I receive this error rake aborted! no such file to load -- rdoc/task (See full trace by running task with --trace) Here is the --trace ...
4
votes
2answers
5k views

Rails: how do I resolve the 'rake/rdoctask'' is deprecated' warning?

Just a forewarning: I'm a rails noob. When I run: rake db:migrate I get this deprecation warning: WARNING: 'require 'rake/rdoctask'' is deprecated. Please use 'require 'rdoc/task' (in RDoc ...
9
votes
3answers
2k views

error installing RDoc documentation: incompatible encoding regexp match

Over the last week, on a few gem install or gem update operations, I've received an error similar to these: ERROR: While generating documentation for sinatra-1.3.1 ... MESSAGE: error generating ...
5
votes
3answers
1k views

Can I get my README.textile into my RDoc with proper formatting?

I like to use Textile or Markdown to write readme files for my projects, but when I generate the RDoc the readme file gets interpreted as RDoc and looks really horrible. Is there a way to make RDoc ...
2
votes
1answer
58 views

Ruby regular expression method !~

I don't remember where I learned the !~ method of the String class. However I know it compares a string to a regex and check whether the string not match the regex. See my below example. C:\>irb ...
10
votes
1answer
1k views

yard and links to classes/modules in the doc

I'm currently switching from rdoc to yard for my ruby software documentaion. In my doc I often reference some classes/modules from the comments, for instance : ## == Provides various utility ...
1
vote
1answer
118 views

How to automatically document Metaprogrammed attr_accessors using RDoc?

FIRST, I would like to customize RDoc such that it automatically recognizes each key of the attrs hash foo and bar of the following code: class SomeClass def initialize( args = { }) attrs = { ...
1
vote
1answer
1k views

creating Rdoc for a rails app

I would like to generate a documentation to my rails (2.3.8) project. When I tried rake doc:rails rake doc:rerails It creates documentation for all the classes including standard ruby classes and ...
1
vote
2answers
161 views

Generating RDOCs for locally installed gems

I am trying to contribute to a gem I recently took interest in - Nesta. The developer has done a great job in creating one of the lightest, thinest CMSs you can find and I want to document it. I have ...
0
votes
1answer
16 views

how do you document padrino route methods using rdoc?

I'd like to use RDoc to document API calls in a web services app written in Padrino. Here's an example file: Analytics.controller :api do diable :layout ## # = <base_url>/ping - test ...
0
votes
2answers
813 views

ERROR: 'rake/rdoctask' is obsolete and no longer supported

Out of the blue, I started getting the following error message: (in /Users/me/.rvm/gems/ruby-1.9.3-p125@mysql2/gems/rails-0.9.5) rake aborted! ERROR: 'rake/rdoctask' is obsolete and no longer ...
0
votes
0answers
122 views

Documenting constants and methods

I am writing a documentation for my Ruby on Rails 3.0.7 application using RDoc. In the application lib folder, I have the following: module ModuleName class ModuleName::User < ActiveRecord::Base ...