Tagged Questions
0
votes
0answers
58 views
How can I generate capistrano tasks documentation?
I have a fair bunch of capistrano tasks, each well documented with inline documentation.
I am looking to now have Jenkins take these inline docs and publish rdoc/yard style documentation.
Are ...
1
vote
0answers
39 views
Completely replace rdoc by yard for gem install/server
is there a way to completely replace rdoc by yard, even when installing a gem?
As it is now, gem server has only access to rdoc-generated docs. In some cases like the FFI-gem, the documentation is ...
0
votes
0answers
101 views
Parameter list that looks good in both rdoc and yard docs
I'm converting a gem's documentation from Rdoc to Yard, and can't figure out how to make a parameter list that works in both Yard and Rdoc. This markup:
# @param barcode_id [String] Nominally a ...
1
vote
1answer
86 views
Generate documentation on commit
What is the best practice for automatically-generating ruby documentation as part of a git commit workflow? We'd like to automatically generate new documentation whenever a commit is merged into ...
2
votes
2answers
114 views
Is it normal that YARD doesn't replace `code` with <code>code</code>?
I'm just starting to use YARD for documenting my Rails app. I didn't specify any specific Markup handler, but I would have expected that `code` would be converted to code, which doesn't seem to ...
1
vote
1answer
212 views
Ruby yard doc not showing any files
This is my setup:
Ruby 1.9.2 p290
Yard 0.8.1
The folder structure is not a gem, just plain old Ruby code:
.
├── classes
│ ├── crawl.rb
│ └── page.rb
└── run.rb
The problem is that yard does ...
0
votes
1answer
141 views
YARD and RDoc compatibility
If I document my code with YARD, and use e.g. the @overload tag, and someone else installs my gem and it generates the documentation with RDoc, won't the result be messy?
Is there a good way to deal ...
4
votes
2answers
343 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 ...
2
votes
1answer
155 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 ...
3
votes
2answers
221 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 ...
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
4answers
285 views
How do you examine the source code?
How do you examine the source code for a library you are using and want to modify.
Eg. when you have downloaded a gem, I guess that you are forking the repo from GitHub and then cloning your forked ...
6
votes
1answer
1k 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?
7
votes
2answers
2k 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
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 ...
3
votes
2answers
428 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
2answers
571 views
Is there a Ruby documentation tool that allows inclusion of diagrams and images?
I am a big fan of Doxygen which I have used for years with various languages. In particular, I appreciate its wiki-like ability to include images and run the Graphviz dot generator to have arbitrary ...
