Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Are there certain code conventions when documenting ruby code? For example I have the following code snippit:

require 'open3'

module ProcessUtils

  # Runs a subprocess and applies handlers for stdout and stderr
  # Params:
  # - command: command line string to be executed by the system
  # - outhandler: proc object that takes a pipe object as first and only param (may be nil)
  # - errhandler: proc object that takes a pipe object as first and only param (may be nil)
  def execute_and_handle(command, outhandler, errhandler)
    Open3.popen3(command) do |_, stdout, stderr|
      if (outhandler)
        outhandler.call(stdout)
      end
      if (errhandler)
        errhandler.call(stderr)
      end
    end
  end
end

This guess this is okay, but perhaps there are better/superior documentation practices?

share|improve this question

7 Answers

up vote 40 down vote accepted

You should target your documentation for the RDoc processor, which can find your documentation and generate HTML from it. You've put your comment in the right place for that, but you should have a look at the RDoc documentation to learn about the kinds of tags that RDoc knows how to format. To that end, I'd reformat your comment as follows:

  # Runs a subprocess and applies handlers for stdout and stderr
  # Params:
  # +command+:: command line string to be executed by the system
  # +outhandler+:: +Proc+ object that takes a pipe object as first and only param (may be nil)
  # +errhandler+:: +Proc+ object that takes a pipe object as first and only param (may be nil)
share|improve this answer
How should I document that the outhandler and errhandler parameters may be nil? – StackedCrooked Nov 5 '09 at 16:18
Check out YARD (used by rdoc.info), instead of RDoc, for a more in depth documentation processor. yard.soen.ca/getting_started.html#docing – hgmnz Nov 5 '09 at 16:26
3  
YARD's annotations may be more powerful, but until it's included in the standard Ruby distribution instead of RDoc, its annotations are not the standard. – Ken Bloom Nov 5 '09 at 17:35

I would highly suggest using RDoc. It is pretty much the standard. It is easy to read the code comments, and it allows you to easily create web-based documentation for your project.

Here is a really good introduction to the syntax.

Update: Original link is broken. Try this SO post with similar content.

share|improve this answer
Your second link is broken. – Intentss Nov 7 '11 at 12:19
@Ben - Thanks for pointing this out! I've updated with a different link. – Topher Fangio Nov 7 '11 at 15:51

Rails has some API Documentation Guidelines. That's probably a good starting point.

share|improve this answer

The canonical is RDoc it is very similar to the one you've posted.

See the sample section on the link I sent you

share|improve this answer

Here is the documentation for the ruby documentation system (RDOC)

share|improve this answer

I would suggest getting to know RDoc as is stated. But don't ignore the very popular YARD A Ruby Document tool. as well. A lot of the documentation you will see online for Ruby uses Yard. RVM knows Yard and uses it for generating your documentation on your machine if it is available.

RDoc would still be required, as Yard uses it.

share|improve this answer

You can also check TomDoc for Ruby - Version 1.0.0-rc1.

http://tomdoc.org/

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.