2
votes
1answer
36 views

How to make rdoc link to a method with equal sign

In one file I have module Adapter ## # :method: avatar ## # :method: avatar=(value) end In another file I want to have links to these methods: # Adapter#avatar # this generates a ...
0
votes
1answer
44 views

What's the most common way for including a howto/documentation in a ruby-gem?

I saw that if the gem is installed also the rdoc is generated and you can access the rdoc by gem server #->localhost:8808 I am thinking of the most common ways how to describe a ruby-developer ...
1
vote
1answer
23 views

Plurals in RDoc documentation

According to the RDoc documentation, names of classes, source files, and any method names containing an underscore or preceded by a hash character are automatically hyperlinked. But links to plurals ...
0
votes
1answer
124 views

Ruby trying to RTFM but can't

Simple question, what is the best way on windows to search the documentation. This time I was wanting information on 'while'(resolved now by google) but I still can't can't get ri or the chm ...
0
votes
2answers
92 views

What documentation software is using Ruby on Rails 3.1?

Some time ago I read the changelog of a Ruby on Rails version (I think 3.1.0). In that was written that the documentation "system"/"software" was changed. The current can be browsed here. What is the ...
6
votes
3answers
429 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 ...
0
votes
0answers
180 views

Rdoc from Gemfile

I would like to include Gemfile in my rdoc documentation. Rdoc treats it like a source file with expected results. Is there any way to get rdoc to treat it like a Ruby file instead?
0
votes
1answer
379 views

Include local images in RDoc

I have created an image with a "visual" tool that I want to include on the front page of my rdoc documentation. The front page is defined in a *.rdoc . I have found it possible to include external ...
2
votes
1answer
151 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.
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 ...
1
vote
1answer
51 views

Documenting classes using labeled lists

I am using Ruby on Rails 3.0.7 and I am writing some documentation for my application using RDoc. In my application file I have this: #[EXAMPLE 1 - Some text.] # # [CASE 1 - Some text.] # # ...
1
vote
2answers
185 views

How to use the `:include:` directive using RDoc?

I am using Ruby on Rails 3.0.7 and I am writing some documentation for my application using RDoc. Since I have not found on the Web some good documentation with examples, what I would like to know is ...
0
votes
3answers
283 views

Where to find good RDoc documentation?

I am using Ruby on Rails 3.0.7 and I would like to document my application. To do that I would to find some "good" documentation about RDoc. Where I can find that? That is, what are "the best" web ...
0
votes
1answer
185 views

The “underscore”\“hash” meaning in RDoc

I am using Ruby on Rails 3.0.7 and I am trying to understand how the RDoc system works. So I would like to understand what the "hash" value means when the official documentation refers to that on line ...
0
votes
2answers
760 views

Get and install a new RDoc template

I am using Ruby on Rails 3.0.7 and I would like to install and use a new RDoc template (instead of the default) in order to documenting my application. I would like to choose one of following: ...
3
votes
1answer
361 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 ...
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
2answers
265 views

Ruby: Example of well-documented gem/plugin

I want to create rdoc comments for active_factory plugin. Could you suggest an example of ruby gem or rails plugin with most helpful documentation. What do you like there and what should i pay ...
0
votes
1answer
447 views

rdoc, darkfish, and the :call-seq: tag

I'm in the process of documenting a Ruby project with rdoc, and I discovered the darkfish rdoc formatter. I really like it, but the :call-seq: tag no longer works. Instead, it puts the literal ...
3
votes
1answer
348 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
1answer
233 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 ...
1
vote
3answers
275 views

What parts of a Ruby-on-Rails application (with reasonably expressive unit tests) should have RDoc?

I'm developing an open-source web application on top of Rails. I'd like to make my code as easy to understand and modify as possible. I'm test-driving my development with unit tests, so much of the ...
10
votes
3answers
768 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 ...
1
vote
2answers
139 views

Displaying inherited methods in rdoc

I have a program written in Ruby that uses multiple levels of inheritance. All of the parent classes have implemented methods that an object of a child class would use, but when I generate an rdoc ...
4
votes
1answer
985 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 ...
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. ...
3
votes
2answers
422 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 ...
1
vote
1answer
685 views

Rails model documentation

I need to create documentation for my rails models. I can't figure out how to get the Rake doc:x commands to include the validators and relationships. I'm using annotate_models to document the table ...
0
votes
1answer
291 views

RDoc CONSTANT comments?

In RDoc, is there any way to show constant comments? I would like to comment a constant in a project of mine but and realizing that they dont show up in the RDoc output. I checked documentation which ...