Tagged Questions
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 structure.
11
votes
2answers
3k views
Is there a good, solid reference for proper RDoc syntax?
I'm looking for a good, solid reference for proper RDoc syntax. Recommendations? I can't seem to find anything that clearly shows:
How to document class methods and their parameters
How to document ...
8
votes
3answers
2k 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.
8
votes
3answers
427 views
Is there any way to easily link a file in RDoc?
I want to link to a documentation of a file in RDoc. but the only way I could do is with the following markup:
configuration.rb[link:files/configuration_rb.html]
I would like to do it in a better ...
8
votes
8answers
6k 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 ...
7
votes
3answers
547 views
Can Bundler be configured to install gems rdoc?
I use bdoc (with hanna for formatting) as a quick way of looking at the rdoc documentation for the gems installed on my system. However, because bundler does not install rdoc when installing gems, I'm ...
7
votes
1answer
313 views
What is the difference between ri and rdoc
Whenever I install gems I see ri and rdoc follow. I know this is documentation but what is the difference between the two and how to use them?
7
votes
3answers
534 views
How do I add existing comments to RDoc in Ruby?
I've got all these comments that I want to make into 'RDoc comments' so they can be formatted appropriately and viewed using 'Ri.' Can anyone get me started on understanding how to use RDoc?
6
votes
2answers
162 views
What's the rationale/history for the # convention of identifying methods in Ruby?
For example, I've always seen methods referred to as String#split, but never String.split, which seems slightly more logical. Or maybe even String::split, because you could consider #split to be in ...
6
votes
2answers
2k views
Why does my Ruby 'ri' tool not return results in command prompt? [closed]
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. ...
5
votes
2answers
91 views
Adding documentation for model scopes in rails
I'm not sure if this is actually possible or not but I'm trying to make the documentation of our rails app more complete by adding documentation for the scopes in our app/models files. What I'm ...
5
votes
4answers
2k views
file 'lib' not found when installing rails 3.1 on Mac OS X Lion
I just installed rvm and then rails 3.1rc5 with:
gem install rails --pre
But I got some errors after "Installing ri documentation" and the RDoc documentation:
Successfully installed <bunch of ...
5
votes
2answers
584 views
How do you remove the documentation installed by gem install?
I know it's possible to install a gem without the documentation, but unfortunately, I didn't for the first three months I used ruby. In that time, I managed to install a significant amount of gems, ...
4
votes
1answer
42 views
Syntax highlight Ruby code in RDoc file?
I am documenting a Ruby library I am writing. In my README.rdoc file, I am including an example of the usage with some demo Ruby code.
However, the resulting HTML documentation does not show the Ruby ...
4
votes
1answer
66 views
Internal comments using YARD for Ruby documentation?
I'm in the process of switching over a rubygem I maintain from RDoc to YARD documentation. However, there are some critical comments in the code that need to remain only in the code and should not ...
4
votes
1answer
268 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 ...
4
votes
2answers
589 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 ...
4
votes
4answers
657 views
How to generate Ruby documentation using different template?
I want to generate the Ruby documentation with hanna template.
How to do that? Or where can I download it if it's available at all?
Using
rdoc -o ~/doc --inline-source --line-numbers --format=html ...
3
votes
3answers
65 views
Where are the official docs for `attr_accessor` and other methods of `Module`?
Yesterday I answered a question about how attr_accessor works. I wanted to link to the documentation of the method, but to my surprise, it didn't show up on ruby-doc.org. Shouldn't it be documented in ...
3
votes
2answers
335 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 ...
3
votes
1answer
102 views
linking to a method by the same name in a different class (Rdoc)
I'm documenting some ruby code right now. We have two classes that both have a method called "host".
In one of these classes the method needs some special comments. In the other class I'd like to ...
3
votes
1answer
38 views
Is it possible to generate Rdocs after a gem has already been installed?
I installed a gem using the --no-rdoc flag but now I am regretting it!
Can I somehow generate my rdocs without having to reinstall the gem?
3
votes
2answers
540 views
How to document a rails application?
I just started to document a rails application. I know this is actually done by rdoc, so I followed some rdoc guides regarding syntax and so on, but I got stuck when I tried to describe attributes of ...
3
votes
1answer
210 views
generate documentation from javascript
How are you generate documentation for javascript ? Especially in a rails application ?
Any plugins to rdoc or something similar ?
3
votes
2answers
708 views
How to rebuild rdoc for all the installed gems?
I have several gems installed in multiple locations.
What is the hard/easy way to generate/re-generate:
rdoc for all these installed gems, all at once?
yardoc for all these installed gems, all at ...
3
votes
1answer
139 views
How can I document implicit methods inside of rails models?
I'm using YARD on my Rails project and was wondering how I would go about documenting inherited/runtime methods on a Rails model? For instance documenting the existence of a first_name attribute on a ...
3
votes
1answer
385 views
Why is the “:nodoc:” syntax needed?
It seems a lot of libraries/plugins use this syntax:
def self.included(base) # :nodoc:
base.extend ClassMethods
end
Why is the :nodoc: part necessary?
3
votes
2answers
854 views
Best wiki syntax for documentation in ruby code and project README files
Are there any wiki syntax like rdoc, markdown, ... recommended in the ruby world?
I write sometimes open source code and have no glue which syntax I should use in Code documents and in README files. ...
3
votes
2answers
246 views
How do I create an arbitrary link in YARD documentation?
I'm trying to create some links in my YARD documentation. I can get an HTTP link:
# I like {http://stackoverflow.com Stackoverflow}
renders as
<p>I like <a ...
3
votes
2answers
1k views
Replacement for rdoc usage
According to this post, RDoc::usage is not currently available in ruby 1.9. Are there any good replacements available?
I'd be interested to hear what's available from the standard install as well as ...
3
votes
1answer
501 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 ...
2
votes
1answer
49 views
Nothing Known About … when using ri Array — Ruby
I have Ubuntu 11.10 and am using rvm with ruby 1.9.2. I followed this exactly to install Ruby: http://blog.sudobits.com/2011/10/27/how-to-install-ruby-on-rails-in-ubuntu-11-10/
I generate the docs ...
2
votes
1answer
295 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 ...
2
votes
0answers
51 views
Customize RDoc::ClassModule#description
I'm attempting to write a new generator for RDoc but I cannot figure out how to customize the description output for an RDoc::ClassModule object. Currently it looks like this:
<p><a ...
2
votes
1answer
226 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 ...
2
votes
0answers
62 views
Show ruby core and standard documentation when running gem server
Is there a way to show the ruby core and standard library documentation when running gem server?
I can navigate the core & std documentation created with rvm, but I would like to have all the ...
2
votes
1answer
59 views
Generating RDoc to LaTeX
Is it possible to generate RDoc in LaTeX format? I looked at RDoc and YARD, but didn't find what I need.
I am writing a documentation in LaTeX for my project in Ruby, and I need a way to easily embed ...
2
votes
1answer
59 views
Documenting yaml
Is there something like javadoc or rdoc for documenting YAML files, so that we could extract it into HTML documentation? Ideally with markdown syntax.
2
votes
1answer
185 views
RDoc: Documentating an application
I am using Ruby on Rails 3.0.7 and I would like to write some documentation for my application using RDoc.
Where I can find some good\advanced real examples on the Web?
There is somewhere a summary ...
2
votes
1answer
114 views
RDoc not generating source files
I'm using Rdoc 2.58 with Ruby 1.9.2p138. When I generate my rdoc files using the Darkfish format (which is the only option), I'm not getting the source code previews with it. There are no error ...
2
votes
3answers
470 views
Rails install fails on Ubuntu 10.10
I'm trying to install rails on Ubuntu 10.10, but get File not found: lib every time. Ruby and Rubygems have been installed correctly. I've seen this problem posted all over the web but no solutions ...
2
votes
2answers
137 views
Does Ruby Yard have a feature comparable to RDoc :include: tag?
RDoc has the :include: tag (see the bottom of this page) that will take in an arbitrary text file and format as if it was indented wherever the include begins. This is a great way to pull in source ...
2
votes
1answer
316 views
Add Ruby Source Code as HTML to RDoc
How do I include a ruby code file, as is, into RDoc?
I have an example.rb file that documents how to use my gem and I would like to include that as one of the files like the README.rdoc and ...
2
votes
1answer
467 views
Yard is not the same as Rdoc?
Correct me if I'm wrong, is Yard not the same as Rdoc?
It's not based on Rdoc but a total rewrite?
So if I'm using Yard, I don't have to bother with Rdoc right?
2
votes
1answer
397 views
Can Doxygen generate collapsable code sections like rdoc?
I am creating internal documentation for a C++ project using Doxygen. I am having Doxygen include the source for methods, etc, but this makes the page kind of hard to scan. I'd like it to behave like ...
2
votes
1answer
418 views
How can I make rdoc properly read method arguments from my c extension?
all, I'm using rdoc to generate documentation for my Ruby code which contains C-extensions, but I'm having problems with my method arguments. Rdoc doesn't parse their names correctly and instead uses ...
2
votes
1answer
265 views
How can I define sections without === Headings for RDoc::usage()?
I like to generate man pages using '--help' output via help2man and txt2man. Ruby's RDoc system is very convenient, but I can't seem to configure RDoc::usage in exactly the way that I want. Here's a ...
2
votes
2answers
1k views
How do you generate rDoc for a particular plugin using rake
OK, I am trying to generate the rDoc for paperclip, but the rake task is choking on another plugin before it gets to it, so this is out of the question:
rake doc:plugins
I could go and fix up the ...
1
vote
1answer
37 views
How make contents of README_FOR_APP appear in doc/app/index.html
I'd like the contents of doc/README_FOR_APP appear in doc/app/index.html, when I do rake doc:app.
Currently, the content is:
This is the API documentation for Rails Application Documentation.
...
1
vote
0answers
37 views
How do I render a verbatim/code/pre plus sign with RDoc markup?
Using RDoc markup and generating docs with Yard, I'm trying to document some command output that has a line like:
+----------------------------------+
...but can't figure out how to achieve this. ...
1
vote
1answer
480 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
...