Tagged Questions

YARD stands for "Yay! A Ruby Documentation tool". It is considered an alternative to the rdoc tool with more features.

learn more… | top users | synonyms

6
votes
2answers
170 views

How can I list the undocumented modules/classes/constants/methods with yardoc?

I have a small library of code that I am documenting with YARD. When I run the yardoc command, it tells me: Files: 40 Modules: 14 ( 0 undocumented) Classes: 39 ( 0 ...
5
votes
1answer
869 views

Limitations of PEG grammar & parser generators?

I was enjoying using YARD a lot: http://www.ootl.org/yard/ http://code.google.com/p/yardparser/ http://www.codeproject.com/KB/recipes/yard-tokenizer.aspx I was able to construct fully functional ...
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
267 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 ...
3
votes
1answer
36 views

All Ruby documentation offline with yard

If I want see documentation on my gems I can make: yard server --gems How can I see documentation on standart ruby library?
3
votes
1answer
96 views

Macros don't work consistently when generating docs

I am using macros in the YARD doc tool and on some files they work and some they don't. For example, I define a macro in one of my source files. # @macro [new] my_macro # @param [String] my_string ...
3
votes
2answers
54 views

Mark a parameter as optional (or has a default) with YARD

I'm using YARD to document my code. I have a method that has an optional parameter with a default value. How do I notate that the parameter is optional and has a default value? Example: # Squares ...
3
votes
1answer
45 views

How to don't generate [view source] link when creating documentation using yard?

I am using yard to generate project documentation, but i don't want to display the [view source] link in the documentation, i have dived into the yard official guides but still don't get the solution. ...
3
votes
2answers
707 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
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 ...
2
votes
0answers
26 views

Using Ruby's Yard doc tool, can I configure Yard to *not* put methods in alphabetical order?

I'm developing a Ruby programming tutorial which I'd like to document with Yard. By default, Yard puts all methods in a module/class into alphabetical order. However, since the methods in each module ...
2
votes
1answer
91 views

Documentation generated by Yard and spanish accents

I'm generating documentation with Yard, and all my comments have been written in Spanish. The problem is that the documentation generated by Yard contains � instead of Spanish accents. I've used ...
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
286 views

Document model attributes with YARD

I'm using YARD to generate docs for my rails app with makrdown as the script parser. Most of the documentation features just work great right out of the box. However, I'd also like to document the ...
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
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?
1
vote
1answer
36 views

How could/should I properly document the `accepts_nested_attributes_for` method?

I am using Ruby on Rails 3.1.0 and YARD 0.7.4. I would like to document the accepts_nested_attributes_for method in my Article class (see the following example for more information) but it seems not ...
1
vote
0answers
14 views

How can I state and display documentation related to constant values in a proper way?

I am using Ruby on Rails 3.1.0 and I am trying to use YARD 0.7.4. I would like to document constant values, so in my class I state this: # [Fixnum] Test constant documentation. TEST_CONSTANT = 1 ...
1
vote
0answers
17 views

possible to use YARD to document erb templates

Is it possible to use YARD to document templates or does it require classes in files? I have tried running yard doc controllers/ models/ views/index/ but the index views aren't picked up. I see the ...
1
vote
2answers
47 views

How I can run Yard server on production server?

How I can run Yard server on production server? Maybe use some task? Load from capistrano, using passenger and nginx, Jenkins(Hudson).
1
vote
1answer
99 views

yard 0.7.3 fails to build my README in both markdown and textile

I've decided to convert the README file in a project of mine to markdown and have been using yard verify the documentation rendered out ok. So I installed rdiscount, changed README to README.md and ...
1
vote
0answers
36 views

ey deploy faild while executing migration script

I am trying to deploy ruby on rails 2 based application using engine yard gem and get following error: ey deploy --migrate=rake db:migrate Beginning deploy for 'test' in 'test' on server... ~> ...
1
vote
1answer
100 views

YARD: document custom getter/setter pair like attr_accessor

I'm using YARD to document my project. YARD documents attributes created with attr_accessor :some_attribute in a separate section "Instance Attribute Summary". now i have another attribute, but ...
1
vote
1answer
94 views

yard, How to include image to documentation?

I want to include image in yard-genereted documentation, but can't find anywhere how to do this... Does anyone know how to do this?
1
vote
1answer
144 views

Engineyard using postgis

I have an instance in Engineyard and I want to install postgis. I tried several things with chef but had no success at all. Has anyone installed postgis on Engineyard successfully? and can you tell ...
1
vote
1answer
742 views

How to generate documentation with Yard for Rails views?

I have just started using Yard to generate my docs and whilst it works great for my models and controllers, I can't seem to get it to generate anything for the views I've tried a variety of different ...
1
vote
4answers
175 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 ...
0
votes
0answers
8 views

How to use the YARD server to show private method?

My first question I found the --private switch is not work for yard server, so how to make it work? Second, I noticed that --private switch works for yard doc, if I choose to use the yard doc to ...
0
votes
0answers
14 views

How can I generate documentation related to my plugin?

I am using Rails 3.1.0 and I have implemented a working plugin. As well as it should be done, its related files are located in the ROOT_APP/vendor/plugins/my_plugin directory. Now, I am using the ...
0
votes
1answer
34 views

How can I refer to a parameter ('@param' tag) from another parameter?

I am using Ruby on Rails 3.1.0 and the YARD 0.7.4 gem for documentation purposes. I would like to refer to a parameter (@param tag) from another parameter. That is, I have: # ... # # @param [String] ...
0
votes
0answers
44 views

YARD: documenting class methods added by an included module

I am writing documentation for my ruby gem using YARD. In my gem, I have some code which follows this common ruby pattern where a module is included in a class, and that module not only adds instance ...
0
votes
1answer
35 views

Change yardoc serialized_path

Right now Yardoc will generate docs like: doc/ModuleName.html, doc/ModuleName/ClassName.html and doc/ModuleName/ClassName/method_name.html I was wondering how I can adjust serialized_path (without ...
0
votes
0answers
30 views

How to use Yard to document enumerable type and the types that they contain?

Using the ruby Yard doc tool I can write # @param bar [String] def foo(bar) end however if the parameter is an enumerable # @param bar [Enumerable[String]] def foo(bar) end Is the above the ...
0
votes
1answer
195 views

Documenting Sinatra routes for extensions (Yard::Sinatra doesn't work)

I am writing a moderate-sized Sinatra app that I break into extensions, placed in ./lib/extensions/. I want to document each route, but Yard::Sinatra only documents the routes defined in the main ...
0
votes
2answers
398 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 ...