In Ioke doc, the ISpec tests are included in the documentation, see ioke.org/dok/index.html

How can this be done with Ruby's RSpec and RDoc (or SDoc)? I can't find any commandline switches or external libs to do so. Any ideas (not including implementing it all by myself ;-) )?

link|improve this question
YARD, an alternative to RDoc is easier extensible than RDoc: yard.soen.ca One YARD example goes a different approach, specifing RSpec as tagged comment and evaluating the comment as spec: github.com/lsegal/yard-examples/tree/… The disadvantage of that is: No autotest, no syntax highlight nor code completion for writing tests... but at least they're in the docs. – bb. Jul 25 '09 at 9:36
i don't think rdoc currently supports this feature. i also don't think the yard approach is the way to go. mapping specs to classes and modules is not that hard (see autotest) and it should be possible to implement this in a doc generator. – rubiii Mar 7 '10 at 12:02
feedback

1 Answer

up vote 2 down vote accepted

Time helps: Now there's a plugin for YARD doing exactly what I want: http://github.com/lsegal/yard-spec-plugin

link|improve this answer
thanks for the update! – rubiii May 24 '10 at 17:32
feedback

Your Answer

 
or
required, but never shown

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