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

0
votes
0answers
14 views

How to get Yardoc to output to STDOUT?

I've looked for templates that come with the gem (I can only find the default HTML outputter), I've searched the help and online docs for a switch that will redirect to STDOUT. I can't find anything ...
0
votes
1answer
20 views

How can I insert a bullet (<li>) element in Markdown-formatted YARD documentation

I am using YARDoc with Markdown to document my Ruby code, and want to have an unordered list (HTML "bullets") in the documentation for a method. Here's what I have so far: $ cat file.rb class Foo # ...
2
votes
1answer
47 views

Document block taking no parameters

I'm writing my first gem which I'm documenting with YARD. I've made one of my classes have a constructor which expects a block which takes no arguments1. YARD provides the @yield [params] description ...
-1
votes
1answer
27 views

YARD convention for truthiness

Is there a convention to indicate that a parameter in YARD style documentation is only used for its "truthiness" status, that is you only want to know if it's false or nil or is truthy? What is ...
0
votes
2answers
36 views

Rails RESTfull API Documentation

im searching for a Documentation Framework that supports the following features: Generated from Code Comments Searchable Styling customizable NTH: Linked references (If i reference a class somewhere ...
0
votes
0answers
55 views

Ruby yard-graph output doesnt show my methods

My problem is that I'm trying to make the doc of my ruby project using Yard. All seems fine but when I try to get a class diagram using the graph option: yard-graph --dependencies --empty-mixins ...
0
votes
1answer
21 views

YARD ⇒ how to add custom output to several methods descriptions basing on one DSL statement in YARD plugin

I have the problem writing YARD plugin for the following DSL: class MyClass my_dsl :do_it, :do_other def do_it # do it end def do_other # do other end def do_unrelated # do ...
0
votes
2answers
54 views

YARD Cucumber leaves comments in ouput documentation

In order to localize my Gherkin scripts, I added #language:ru comment at the very top of each .feature file and started using localized names for steps and scenarios. However, this comments ...
1
vote
1answer
34 views

Documenting def_delegators with Yardoc

I have a class that uses the def_delegators method from the Forwadable module. I haven't found a way to get Yardoc to output documentation for it. I've tried using a macro but it won't output anything ...
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 ...
1
vote
2answers
39 views

YARD: how to create a link to a class method?

How do you create a link to a ruby class method with YARD? Here is the yard documentation regarding links. Linking to an instance method within the same namespace: {#my_instance_method} Which ...
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 ...
2
votes
0answers
49 views

Examples on translating raw data generated by YARD

On the YARD readme, there is mention of raw data generated by YARD: YARD also outputs documented objects as raw data (the dumped Namespace) which can be reloaded to do generation at a later ...
0
votes
1answer
25 views

How to remove inheritance info (and other sections) from Yardoc output

I want to produce some documentation that is available publicly, and hence I wish to remove certain aspects of the output that Yard generates by default. Already I've managed to remove the source code ...
1
vote
1answer
135 views

Using a rakefile to generate docs from source

I downloaded the ruby Twitter gem source code and am trying to generate the documentation using yard, which I installed via gem install yard. In the rakefile, I found the following, which I assume is ...
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
298 views

Set Enviroment variables on Engine Yard

My app is on Engine Yard services and I need to set the enviroment variables to work with my secret id and password. Somebody know how I can set each variables? What is the best way to do this?
0
votes
1answer
87 views

Parser error on installing the remotipart gem

I am using RVM, Ruby v1.9.3-p125 and Ruby on Rails v3.2.2. On my Ubuntu server I am trying to install the remotipart v1.0.2 gem but I get the following error: $ gem install remotipart -v 1.0.2 ...
0
votes
0answers
52 views

Creating Ruby Gems: Yardoc custom handler with bundler?

I'd like to add a custom Yardoc handler to my gem as described here: http://yardoc.org/guides/extending-yard/writing-handlers.html The caveat is that I'm using Bundler for building and deploying my ...
0
votes
1answer
174 views

Generate rails documentation in pdf with yard

It´s possible to generate documentation in pdf format using YARD instead of HTML? I didn´t find this feature in yard documentation. If it´s not possible which is the easier way to generate a PDF ...
3
votes
1answer
130 views

DRYing yard parameters

I've got what i assumed was a fairly basic yard macro usage where i have a Hash structure with a number of options that is shared between multiple functions. I was hoping to use a macro simply to ...
0
votes
0answers
70 views

Yard errors on factory_girl 4.0.0 update

Just tried to update factory_girl and got tons of errors from Yard: Updating installed gems Updating factory_girl Fetching: factory_girl-4.0.0.gem (100%) Successfully installed factory_girl-4.0.0 ...
1
vote
0answers
48 views

whats yardoc syntax for linking to models that are in a namespace?

I couldn't find it anywhere on their website. Here is what I have: # {Page::Section} but when i run the yardoc generation, I get this error: [warn]: In file ...
1
vote
1answer
63 views

Yard: Specify a different path for the compiled doc (instead of doc/)?

Is there any way to tell Yard not to clutter up my Rails project's doc/ folder? I'd like it to save its files in doc/yard/ or something like that. Sadly I didn't find any option for that. Thank you ...
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
2answers
69 views

Gemfile: Make sure some gems are available on the machine, but don't need to be loaded for the project

I didn't work with RoR for 2-3 years, but now I'm back in business, and I really like the bundle command. But I'm a bit unsure how to make sure my fellow developers have all gems installed that are ...
0
votes
1answer
60 views

Omit magic comment from YARD docs

I have the magic comment # -*- encoding : utf-8 -*- at the top of every ruby file in my Rails app. Thing is, it shows up in my YARD docs in the Overview section of each class definition: Overview ...
3
votes
1answer
194 views

Warning in yard with @param tag

I was trying to document some Ruby code using yardand even though I am doing exactly what is described here or here # @param [Integer] the number of trials (>= 0) # @param [Float] success ...
3
votes
1answer
117 views

How to document use of Rails' url_helpers using YARD?

When trying to generate YARD documentation for a service implemented with Rails, I get the following warning: $ yardoc [warn]: in YARD::Handlers::Ruby::MixinHandler: Undocumentable mixin: ...
0
votes
1answer
33 views

How do I retrieve the tags on a class using YARD filters?

I'm really new to this, and I've been going through the YARD docs, and haven't really been able to figure out a solution to my problem. Here is the code I'm starting with: ...
0
votes
0answers
21 views

Is there a way for YARD to render a blank version of an object?

I put this above my class definition # # Categories are a way of organizing the {LibraryItem}s. # # @!parse Category.new however, when I view the category model documentation page, Just the ...
6
votes
6answers
394 views

How to customize diff git to ignore yard date generation

I'm using yard to generate the documenation of my project. Even thought the documentation can generated and so don't really need to be versionned, we decided to do so, because it makes it easier to ...
1
vote
1answer
211 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 ...
1
vote
1answer
117 views

Ruby DSLs and Dynamic Documentation?

How do you approach defining a DSL with a dynamic number of arguments being created for the method such as in the following example: module my_module class Resource # @macro dsl_method # ...
0
votes
1answer
53 views

Iterating over the registers of a Yardoc `@macro`

I am looking for way to iterate over the registers of a yardoc @macro. I know you are able to use them in something like as follows: class Post include DataMapper::Resource # @macro dm.property ...
1
vote
1answer
89 views

How to make Yard `@macro`s apply to multiple files

If I have in one file the following: module Something class Resource # Defines a new property # @param [String] name the property name # @param [Class] type the property's type # ...
2
votes
2answers
235 views

Is there an equivalent of Ruby's Yard in Python?

I use both Python and Ruby and I really love the Ruby's Yard documentation server : http://yardoc.org/ , I would like to know if there is an equivalent in the Python world ? The "pydoc -p" is really ...
1
vote
1answer
84 views

Dynamic documentation, using the return of method in the description of another YARD?

I am documenting a project and essientially I have something similar to the following: def foo return bar(__method__) end def bar (method) return method.to_s + 'somestring' end I am setting up ...
3
votes
0answers
61 views

Run Yard Server on Heroku

Is there a way to mount Yard (http://yardoc.org/guides/index.html) server on heroku ? I did not find anything in the doc that explains how to do it. Thanks a lot
1
vote
1answer
254 views

Javascript documentation generators like RubyDoc.info or YARD?

I really need a nice Javascript documentation generator for an upcoming Javascript library I'm working on. Obviously, I need documentation for my library in order for people to understand it. I'm ...
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 ...
0
votes
1answer
125 views

YARD: How to generate vendor plugin documentation?

I am using Ruby on Rails 3.1.0 and the YARD 0.7.4 gem for documentation purposes. I implemented a working plugin (in the ROOT_APP/vendor/plugins/<plugin_name> directory) and I would like to ...
2
votes
1answer
138 views

How to document more files other than the `README` file?

I am using Ruby on Rails 3.1.0 and the YARD 0.7.4 gem for documentation purposes. I would like to add more files other than the README file on the top of the generated documentation as made here (see ...
2
votes
1answer
177 views

Document duck types with multiple methods in YARD

YARD allows me to specify types for method parameters and return values. As I really like to duck type it is nice to see that YARD also supports defining types by specifying methods they must support. ...
2
votes
0answers
95 views

XML API gem for Ruby on Rails?

YARD is a gem for generating awesome documentation for your entire app. But, I'm looking to generate documentation for API calls, that support XML and JSON... while including links to descriptions ...
1
vote
1answer
122 views

How to output HTML element names in Yard documentation

I'd like to include some HTML element names, like <label>, in my ruby class documentation generated by Yard. But it is not working. For example, the sentence # Returns a <label> field... ...
1
vote
0answers
154 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
1answer
73 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 ...
2
votes
1answer
356 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] ...

1 2