yard 0.9.29 → 0.9.30

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of yard might be problematic. Click here for more details.

Files changed (152) hide show
  1. checksums.yaml +4 -4
  2. data/docs/CodeObjects.md +115 -0
  3. data/docs/GettingStarted.md +679 -0
  4. data/docs/Handlers.md +152 -0
  5. data/docs/Overview.md +61 -0
  6. data/docs/Parser.md +191 -0
  7. data/docs/Tags.md +283 -0
  8. data/docs/TagsArch.md +123 -0
  9. data/docs/Templates.md +496 -0
  10. data/docs/WhatsNew.md +1245 -0
  11. data/docs/images/code-objects-class-diagram.png +0 -0
  12. data/docs/images/handlers-class-diagram.png +0 -0
  13. data/docs/images/overview-class-diagram.png +0 -0
  14. data/docs/images/parser-class-diagram.png +0 -0
  15. data/docs/images/tags-class-diagram.png +0 -0
  16. data/docs/templates/default/fulldoc/html/full_list_tag.erb +9 -0
  17. data/docs/templates/default/fulldoc/html/setup.rb +6 -0
  18. data/docs/templates/default/layout/html/setup.rb +9 -0
  19. data/docs/templates/default/layout/html/tag_list.erb +11 -0
  20. data/docs/templates/default/yard_tags/html/list.erb +18 -0
  21. data/docs/templates/default/yard_tags/html/setup.rb +26 -0
  22. data/docs/templates/plugin.rb +70 -0
  23. data/lib/yard/version.rb +1 -1
  24. data/po/ja.po +31108 -0
  25. data/templates/default/class/dot/setup.rb +7 -0
  26. data/templates/default/class/dot/superklass.erb +3 -0
  27. data/templates/default/class/html/constructor_details.erb +8 -0
  28. data/templates/default/class/html/setup.rb +2 -0
  29. data/templates/default/class/html/subclasses.erb +4 -0
  30. data/templates/default/class/setup.rb +36 -0
  31. data/templates/default/class/text/setup.rb +12 -0
  32. data/templates/default/class/text/subclasses.erb +5 -0
  33. data/templates/default/constant/text/header.erb +11 -0
  34. data/templates/default/constant/text/setup.rb +4 -0
  35. data/templates/default/docstring/html/abstract.erb +4 -0
  36. data/templates/default/docstring/html/deprecated.erb +1 -0
  37. data/templates/default/docstring/html/index.erb +5 -0
  38. data/templates/default/docstring/html/note.erb +6 -0
  39. data/templates/default/docstring/html/private.erb +4 -0
  40. data/templates/default/docstring/html/returns_void.erb +1 -0
  41. data/templates/default/docstring/html/text.erb +1 -0
  42. data/templates/default/docstring/html/todo.erb +6 -0
  43. data/templates/default/docstring/setup.rb +52 -0
  44. data/templates/default/docstring/text/abstract.erb +2 -0
  45. data/templates/default/docstring/text/deprecated.erb +2 -0
  46. data/templates/default/docstring/text/index.erb +2 -0
  47. data/templates/default/docstring/text/note.erb +4 -0
  48. data/templates/default/docstring/text/private.erb +2 -0
  49. data/templates/default/docstring/text/returns_void.erb +1 -0
  50. data/templates/default/docstring/text/text.erb +1 -0
  51. data/templates/default/docstring/text/todo.erb +4 -0
  52. data/templates/default/fulldoc/html/css/common.css +1 -0
  53. data/templates/default/fulldoc/html/css/full_list.css +58 -0
  54. data/templates/default/fulldoc/html/css/style.css +497 -0
  55. data/templates/default/fulldoc/html/frames.erb +17 -0
  56. data/templates/default/fulldoc/html/full_list.erb +37 -0
  57. data/templates/default/fulldoc/html/full_list_class.erb +2 -0
  58. data/templates/default/fulldoc/html/full_list_file.erb +7 -0
  59. data/templates/default/fulldoc/html/full_list_method.erb +10 -0
  60. data/templates/default/fulldoc/html/js/app.js +314 -0
  61. data/templates/default/fulldoc/html/js/full_list.js +216 -0
  62. data/templates/default/fulldoc/html/js/jquery.js +4 -0
  63. data/templates/default/fulldoc/html/setup.rb +241 -0
  64. data/templates/default/layout/dot/header.erb +6 -0
  65. data/templates/default/layout/dot/setup.rb +15 -0
  66. data/templates/default/layout/html/breadcrumb.erb +11 -0
  67. data/templates/default/layout/html/files.erb +11 -0
  68. data/templates/default/layout/html/footer.erb +5 -0
  69. data/templates/default/layout/html/headers.erb +15 -0
  70. data/templates/default/layout/html/index.erb +2 -0
  71. data/templates/default/layout/html/layout.erb +24 -0
  72. data/templates/default/layout/html/listing.erb +4 -0
  73. data/templates/default/layout/html/objects.erb +32 -0
  74. data/templates/default/layout/html/script_setup.erb +4 -0
  75. data/templates/default/layout/html/search.erb +13 -0
  76. data/templates/default/layout/html/setup.rb +89 -0
  77. data/templates/default/method/html/header.erb +17 -0
  78. data/templates/default/method/setup.rb +4 -0
  79. data/templates/default/method/text/header.erb +1 -0
  80. data/templates/default/method_details/html/header.erb +3 -0
  81. data/templates/default/method_details/html/method_signature.erb +25 -0
  82. data/templates/default/method_details/html/source.erb +10 -0
  83. data/templates/default/method_details/setup.rb +11 -0
  84. data/templates/default/method_details/text/header.erb +10 -0
  85. data/templates/default/method_details/text/method_signature.erb +12 -0
  86. data/templates/default/method_details/text/setup.rb +11 -0
  87. data/templates/default/module/dot/child.erb +1 -0
  88. data/templates/default/module/dot/dependencies.erb +3 -0
  89. data/templates/default/module/dot/header.erb +6 -0
  90. data/templates/default/module/dot/info.erb +14 -0
  91. data/templates/default/module/dot/setup.rb +15 -0
  92. data/templates/default/module/html/attribute_details.erb +10 -0
  93. data/templates/default/module/html/attribute_summary.erb +8 -0
  94. data/templates/default/module/html/box_info.erb +43 -0
  95. data/templates/default/module/html/children.erb +8 -0
  96. data/templates/default/module/html/constant_summary.erb +17 -0
  97. data/templates/default/module/html/defines.erb +3 -0
  98. data/templates/default/module/html/header.erb +5 -0
  99. data/templates/default/module/html/inherited_attributes.erb +14 -0
  100. data/templates/default/module/html/inherited_constants.erb +8 -0
  101. data/templates/default/module/html/inherited_methods.erb +19 -0
  102. data/templates/default/module/html/item_summary.erb +40 -0
  103. data/templates/default/module/html/method_details_list.erb +9 -0
  104. data/templates/default/module/html/method_summary.erb +14 -0
  105. data/templates/default/module/html/methodmissing.erb +12 -0
  106. data/templates/default/module/html/pre_docstring.erb +1 -0
  107. data/templates/default/module/setup.rb +167 -0
  108. data/templates/default/module/text/children.erb +10 -0
  109. data/templates/default/module/text/class_meths_list.erb +8 -0
  110. data/templates/default/module/text/extends.erb +8 -0
  111. data/templates/default/module/text/header.erb +7 -0
  112. data/templates/default/module/text/includes.erb +8 -0
  113. data/templates/default/module/text/instance_meths_list.erb +8 -0
  114. data/templates/default/module/text/setup.rb +13 -0
  115. data/templates/default/onefile/html/files.erb +5 -0
  116. data/templates/default/onefile/html/headers.erb +6 -0
  117. data/templates/default/onefile/html/layout.erb +17 -0
  118. data/templates/default/onefile/html/readme.erb +3 -0
  119. data/templates/default/onefile/html/setup.rb +62 -0
  120. data/templates/default/root/dot/child.erb +3 -0
  121. data/templates/default/root/dot/setup.rb +6 -0
  122. data/templates/default/root/html/setup.rb +2 -0
  123. data/templates/default/tags/html/example.erb +11 -0
  124. data/templates/default/tags/html/index.erb +3 -0
  125. data/templates/default/tags/html/option.erb +24 -0
  126. data/templates/default/tags/html/overload.erb +14 -0
  127. data/templates/default/tags/html/see.erb +8 -0
  128. data/templates/default/tags/html/tag.erb +20 -0
  129. data/templates/default/tags/setup.rb +57 -0
  130. data/templates/default/tags/text/example.erb +12 -0
  131. data/templates/default/tags/text/index.erb +1 -0
  132. data/templates/default/tags/text/option.erb +20 -0
  133. data/templates/default/tags/text/overload.erb +19 -0
  134. data/templates/default/tags/text/see.erb +11 -0
  135. data/templates/default/tags/text/tag.erb +13 -0
  136. data/templates/guide/class/html/setup.rb +2 -0
  137. data/templates/guide/docstring/html/setup.rb +2 -0
  138. data/templates/guide/fulldoc/html/css/style.css +108 -0
  139. data/templates/guide/fulldoc/html/js/app.js +33 -0
  140. data/templates/guide/fulldoc/html/setup.rb +74 -0
  141. data/templates/guide/layout/html/layout.erb +81 -0
  142. data/templates/guide/layout/html/setup.rb +25 -0
  143. data/templates/guide/method/html/header.erb +18 -0
  144. data/templates/guide/method/html/setup.rb +22 -0
  145. data/templates/guide/module/html/header.erb +7 -0
  146. data/templates/guide/module/html/method_list.erb +5 -0
  147. data/templates/guide/module/html/setup.rb +27 -0
  148. data/templates/guide/onefile/html/files.erb +4 -0
  149. data/templates/guide/onefile/html/setup.rb +6 -0
  150. data/templates/guide/onefile/html/toc.erb +3 -0
  151. data/templates/guide/tags/html/setup.rb +9 -0
  152. metadata +151 -2
@@ -0,0 +1,679 @@
1
+ # @title Getting Started Guide
2
+
3
+ # Getting Started with YARD
4
+
5
+ There are a few ways which YARD can be of use to you or your project. This
6
+ document will cover the most common ways to use YARD:
7
+
8
+ * [Documenting Code with YARD](#docing)
9
+ * [Using YARD to Generate Documentation](#using)
10
+ * [Configuring YARD](#config)
11
+ * [Extending YARD](#extending)
12
+ * [Templating YARD](#templating)
13
+ * [Plugin Support](#plugins)
14
+
15
+ <a name="docing"></a>
16
+
17
+ ## Documenting Code with YARD
18
+
19
+ By default, YARD is compatible with the same RDoc syntax most Ruby developers
20
+ are already familiar with. However, one of the biggest advantages of YARD is
21
+ the extended meta-data syntax, commonly known as "tags", that you can use
22
+ to express small bits of information in a structured and formal manner. While
23
+ RDoc syntax expects you to describe your method in a completely free-form
24
+ manner, YARD recommends declaring your parameters, return types, etc. with
25
+ the `@tag` syntax, which makes outputting the documentation more consistent
26
+ and easier to read. Consider the RDoc documentation for a method to_format:
27
+
28
+ # Converts the object into textual markup given a specific `format`
29
+ # (defaults to `:html`)
30
+ #
31
+ # == Parameters:
32
+ # format::
33
+ # A Symbol declaring the format to convert the object to. This
34
+ # can be `:text` or `:html`.
35
+ #
36
+ # == Returns:
37
+ # A string representing the object in a specified
38
+ # format.
39
+ #
40
+ def to_format(format = :html)
41
+ # format the object
42
+ end
43
+
44
+ While this may seem easy enough to read and understand, it's hard for a machine
45
+ to properly pull this data back out of our documentation. Also we've tied our
46
+ markup to our content, and now our documentation becomes hard to maintain if
47
+ we decide later to change our markup style (maybe we don't want the ":" suffix
48
+ on our headers anymore).
49
+
50
+ In YARD, we would simply define our method as:
51
+
52
+ # Converts the object into textual markup given a specific format.
53
+ #
54
+ # @param format [Symbol] the format type, `:text` or `:html`
55
+ # @return [String] the object converted into the expected format.
56
+ def to_format(format = :html)
57
+ # format the object
58
+ end
59
+
60
+ Using tags we can add semantic metadata to our code without worrying about
61
+ presentation. YARD will handle presentation for us when we decide to generate
62
+ documentation later.
63
+
64
+ ## Which Markup Format?
65
+
66
+ YARD does not impose a specific markup. The above example uses standard RDoc
67
+ markup formatting, but YARD also supports textile and markdown via the
68
+ command-line switch or `.yardopts` file (see below). This means that you are
69
+ free to use whatever formatting you like. This guide is actually written
70
+ using markdown. YARD, however, does add a few important syntaxes that are
71
+ processed no matter which markup formatting you use, such as tag support
72
+ and inter-document linking. These syntaxes are discussed below.
73
+
74
+ ## Adding Tags to Documentation
75
+
76
+ The tag syntax that YARD uses is the same @tag-style syntax you may have seen
77
+ if you've ever coded in Java, Python, PHP, Objective-C or a myriad of other
78
+ languages. The following tag adds an author tag to your class:
79
+
80
+ # @author Loren Segal
81
+ class MyClass
82
+ end
83
+
84
+ To allow for large amounts of text, the @tag syntax will recognize any indented
85
+ lines following a tag as part of the tag data. For example:
86
+
87
+ # @deprecated Use {#my_new_method} instead of this method because
88
+ # it uses a library that is no longer supported in Ruby 1.9.
89
+ # The new method accepts the same parameters.
90
+ def mymethod
91
+ end
92
+
93
+ ### List of Tags
94
+
95
+ A list of tags can be found in {file:docs/Tags.md#taglist}
96
+
97
+ ### Reference Tags
98
+
99
+ To reduce the amount of duplication in writing documentation for repetitive
100
+ code, YARD introduces "reference tags", which are not quite tags, but not
101
+ quite docstrings either. In a sense, they are tag (and docstring) modifiers.
102
+ Basically, any docstring (or tag) that begins with "(see OTHEROBJECT)" will
103
+ implicitly link the docstring or tag to the "OTHEROBJECT", copying any data
104
+ from that docstring/tag into your current object. Consider the example:
105
+
106
+ class MyWebServer
107
+ # Handles a request
108
+ # @param request [Request] the request object
109
+ # @return [String] the resulting webpage
110
+ def get(request) "hello" end
111
+
112
+ # (see #get)
113
+ def post(request) "hello" end
114
+ end
115
+
116
+ The above `#post` method takes the docstring and all tags (`param` and `return`)
117
+ of the `#get` method. When you generate HTML documentation, you will see this
118
+ duplication automatically, so you don't have to manually type it out. We can
119
+ also add our own custom docstring information below the "see" reference, and
120
+ whatever we write will be appended to the docstring:
121
+
122
+ # (see #get)
123
+ # @note This method may modify our application state!
124
+ def post(request) self.state += 1; "hello" end
125
+
126
+ Here we added another tag, but we could have also added plain text. The
127
+ text must be appended *after* the `(see ...)` statement, preferably on
128
+ a separate line.
129
+
130
+ Note that we don't have to "refer" the whole docstring. We can also link
131
+ individual tags instead. Since "get" and "post" actually have different
132
+ descriptions, a more accurate example would be to only refer our parameter
133
+ and return tags:
134
+
135
+ class MyWebServer
136
+ # Handles a GET request
137
+ # @param request [Request] the request object
138
+ # @return [String] the resulting webpage
139
+ def get(request) "hello" end
140
+
141
+ # Handles a POST request
142
+ # @note This method may modify our application state!
143
+ # @param (see #get)
144
+ # @return (see #get)
145
+ def post(request) self.state += 1; "hello" end
146
+ end
147
+
148
+ The above copies all of the param and return tags from `#get`. Note that you
149
+ cannot copy individual tags of a specific type with this syntax.
150
+
151
+ ## Declaring Types
152
+
153
+ Some tags also have an optional "types" field which let us declare a list of
154
+ types associated with the tag. For instance, a return tag can be declared
155
+ with or without a types field.
156
+
157
+ # @return [String, nil] the contents of our object or nil
158
+ # if the object has not been filled with data.
159
+ def validate; end
160
+
161
+ # We don't care about the "type" here:
162
+ # @return the object
163
+ def to_obj; end
164
+
165
+ The list of types is in the form `[type1, type2, ...]` and is mostly free-form,
166
+ so we can also specify duck-types or constant values. For example:
167
+
168
+ # @param argname [#to_s] any object that responds to `#to_s`
169
+ # @param argname [true, false] only true or false
170
+
171
+ Note the latter example can be replaced by the meta-type "Boolean".
172
+ Another meta-type is "void", which stands for "no meaningful value"
173
+ and is used for return values. These meta-types are by convention
174
+ only, but are recommended.
175
+
176
+ List types can be specified in the form `CollectionClass<ElementType, ...>`.
177
+ For instance, consider the following Array that holds a set of Strings and
178
+ Symbols:
179
+
180
+ # @param list [Array<String, Symbol>] the list of strings and symbols.
181
+
182
+ We mentioned that these type fields are "mostly" free-form. In truth, they
183
+ are defined "by convention". To view samples of common type specifications
184
+ and recommended conventions for writing type specifications, see
185
+ [http://yardoc.org/types.html](http://yardoc.org/types.html). Note that these
186
+ conventions may change every now and then, although we are working on a more
187
+ "formal" type specification proposal.
188
+
189
+ ## Documenting Attributes
190
+
191
+ To document a Ruby attribute, add documentation text above the attribute
192
+ definition.
193
+
194
+ # Controls the amplitude of the waveform.
195
+ # @return [Numeric] the amplitude of the waveform
196
+ attr_accessor :amplitude
197
+
198
+ As a short-hand syntax for declaring reader and writer attribute pairs,
199
+ YARD will automatically wire up the correct method types and information
200
+ by simply defining documentation in the `@return` tag. For example,
201
+ the following declaration will show the correct information for the
202
+ `waveform` attribute, both for the getter's return type and the
203
+ setter's value parameter type:
204
+
205
+ # @return [Numeric] the amplitude of the waveform
206
+ attr_accessor :amplitude
207
+
208
+ In this case, the most important details for the attribute are the
209
+ object type declaration and its descriptive text.
210
+
211
+ ### Documentation for a Separate Attribute Writer
212
+
213
+ Usually an attribute will get and set a value using the same syntax,
214
+ so there is no reason to have separate documentation for an attribute
215
+ writer. In the above `amplitude` case, the `Numeric` type is both used
216
+ for the getter and setter types.
217
+
218
+ Sometimes, however, you might want to have separate documentation
219
+ for the getter and setter. In this case, you would still add
220
+ the documentation text to the getter declaration (or `attr_accessor`)
221
+ and use `@overload` tags to declare the separate docstrings. For example:
222
+
223
+ # @overload amplitude
224
+ # Gets the current waveform amplitude.
225
+ # @return [Numeric] the amplitude of the waveform
226
+ # @overload amplitude=(value)
227
+ # Sets the new amplitude.
228
+ # @param value [Numeric] the new amplitude value
229
+ # @note The new amplitude will only take effect if {#restart}
230
+ # is called on the stream.
231
+
232
+ Note that by default, YARD exposes the reader portion of the attribute
233
+ in HTML output. If you have separate `attr_reader` and `attr_writer`
234
+ declarations, make sure to put your documentation (for both reader
235
+ and writer methods) on the reader declaration using `@overload`
236
+ tags as described above. For example:
237
+
238
+ # @overload ...documentation here...
239
+ attr_reader :amplitude
240
+
241
+ # This documentation will be ignored by YARD.
242
+ attr_writer :amplitude
243
+
244
+ ## Documenting Custom DSL Methods
245
+
246
+ Application code in Ruby often makes use of DSL style metaprogrammed methods.
247
+ The most common is the `attr_accessor` method, which of course has built-in
248
+ support in YARD. However, frameworks and libraries often expose custom
249
+ methods that perform similar metaprogramming tasks, and it is often useful
250
+ to document their functionality in your application. Consider the `property`
251
+ method in a project like [DataMapper](http://datamapper.org), which creates
252
+ a typed attribute for a database model. The code might look like:
253
+
254
+ class Post
255
+ include DataMapper::Resource
256
+
257
+ property :title, String
258
+ end
259
+
260
+ As of version 0.7.0, YARD will automatically pick up on these basic methods if
261
+ you document them with a docstring. Therefore, simply adding some comments to
262
+ the code will cause it to generate documentation:
263
+
264
+ class Post
265
+ include DataMapper::Resource
266
+
267
+ # @return [String] the title property of the post
268
+ property :title, String
269
+ end
270
+
271
+ Note that YARD uses the first argument in the method call to determine the
272
+ method name. In some cases, this would not be the method name, and you would
273
+ need to declare it manually. You can do so with the `@!method` directive:
274
+
275
+ # @!method foo
276
+ create_a_foo_method
277
+
278
+ The @!method directive can also accept a full method signature with parameters:
279
+
280
+ # @!method foo(name, opts = {})
281
+ create_a_foo_method
282
+
283
+ You can also set visibility and scope, or modify the method signature with
284
+ extra tags. The following adds documentation for a private class method:
285
+
286
+ # @!method foo(opts = {})
287
+ # The foo method!
288
+ # @!scope class
289
+ # @!visibility private
290
+ create_a_private_foo_class_method
291
+
292
+ Finally, you can tag a method as an attribute by replacing the @!method
293
+ tag with @!attribute. The @!attribute directive allows for the flags [r], [w],
294
+ or [rw] to declare a readonly, writeonly, or readwrite attribute, respectively.
295
+
296
+ # @!attribute [w]
297
+ # The writeonly foo attribute!
298
+ a_writeonly_attribute :foo
299
+
300
+ (Note that if the name can be automatically detected, you do not need to
301
+ specify it in the @!method or @!attribute directives)
302
+
303
+ However, you will notice a few drawbacks with this basic support:
304
+
305
+ 1. There is a fair bit of duplication in such documentation. Specifically, we
306
+ repeat the term String and title twice in the property example.
307
+ 2. We must write a code comment for this property to show up in the documentation.
308
+ If we do not write a comment, it is ignored.
309
+
310
+ ### Macros
311
+
312
+ Fortunately YARD 0.7.0 also adds macros, a powerful way to add support for
313
+ these DSL methods on the fly without writing extra plugins. Macros allow
314
+ you to interpolate arguments from the method call inside the docstring,
315
+ reducing duplication. If we re-wrote the `property` example from above
316
+ using a macro, it might look like:
317
+
318
+ class Post
319
+ include DataMapper::Resource
320
+
321
+ # @!macro dm.property
322
+ # @return [$2] the $1 $0 of the post
323
+ property :title, String
324
+ end
325
+
326
+ (Note that $0 represents the method call, in this case `property`. The rest
327
+ are arguments in the method call.)
328
+
329
+ The above example is equivalent to the first version shown in the previous
330
+ section. There is also some extra benefit to using this macro, in that we
331
+ can re-apply it to any other property in our class by simply calling on
332
+ the macro. The following:
333
+
334
+ # @!macro dm.property
335
+ property :view_count, Integer
336
+
337
+ Would be equivalent to:
338
+
339
+ # @return [Integer] the view_count property of the post
340
+ property :view_count, Integer
341
+
342
+ Finally, macros can be "attached" to method calls, allowing them to be implicitly
343
+ activated every time the method call is seen in the source code of the class,
344
+ or an inheriting class. By simply adding the `[attach]` flag, the macro
345
+ becomes implicit on future calls. All of the properties below get documented
346
+ by using this snippet:
347
+
348
+ class Post
349
+ include DataMapper::Resource
350
+
351
+ # @!macro [attach] dm.property
352
+ # @return [$2] the $1 $0 of the post
353
+ property :title, String
354
+ property :view_count, Integer
355
+ property :email, String
356
+ end
357
+
358
+ You can read more about macros in the {file:docs/Tags.md Tags Overview} document.
359
+
360
+ ## Customized YARD Markup
361
+
362
+ YARD supports a special syntax to link to other code objects, URLs, files,
363
+ or embed docstrings between documents. This syntax has the general form
364
+ of `{Name OptionalTitle}` (where `OptionalTitle` can have spaces, but `Name`
365
+ cannot).
366
+
367
+ ### Linking Objects `{...}`
368
+
369
+ To link another "object" (class, method, module, etc.), use the format:
370
+
371
+ {ObjectName#method OPTIONAL_TITLE}
372
+ {Class::CONSTANT My constant's title}
373
+ {#method_inside_current_namespace}
374
+
375
+ Without an explicit title, YARD will use the relative path to the object as
376
+ the link name. Note that you can also use relative paths inside the object
377
+ path to refer to an object inside the same namespace as your current docstring.
378
+
379
+ Note that the `@see` tag automatically links its data. You should not use
380
+ the link syntax in this tag:
381
+
382
+ # @see #methodname <- Correct.
383
+ # @see {#methodname} <- Incorrect.
384
+
385
+ If you want to use a Hash, prefix the first { with "!":
386
+
387
+ # !{ :some_key => 'value' }
388
+
389
+ ### Linking URLs `{http://...}`
390
+
391
+ URLs are also linked using this `{...}` syntax:
392
+
393
+ {http://example.com Optional Title}
394
+ {mailto:email@example.com}
395
+
396
+ ### Linking Files `{file:...}`
397
+
398
+ Files can also be linked using this same syntax but by adding the `file:`
399
+ prefix to the object name. Files refer to extra readme files you added
400
+ via the command-line. Consider the following examples:
401
+
402
+ {file:docs/GettingStarted.md Getting Started}
403
+ {file:mypage.html#anchor Name}
404
+
405
+ As shown, you can also add an optional `#anchor` if the page is an HTML link.
406
+
407
+ ### Embedding Docstrings `{include:...}`
408
+
409
+ We saw the `(see ...)` syntax above, which allowed us to link an entire docstring
410
+ with another. Sometimes, however, we just want to copy docstring text without
411
+ tags. Using the same `{...}` syntax, but using the `include:` prefix, we can
412
+ embed a docstring (minus tags) at a specific point in the text.
413
+
414
+ # This class is cool
415
+ # @abstract
416
+ class Foo; end
417
+
418
+ # This is another class. {include:Foo} too!
419
+ class Bar; end
420
+
421
+ The docstring for Bar becomes:
422
+
423
+ "This is another class. This class is cool too!"
424
+
425
+ ### Embedding Files `{include:file:...}`
426
+
427
+ You can embed the contents of files using `{include:file:path/to/file}`,
428
+ similar to the `{include:OBJECT}` tag above. If the file uses a specific markup
429
+ type, it will be applied and embedded as marked up text. The following
430
+ shows how the tag can be used inside of comments:
431
+
432
+ # Here is an example of a highlighted Ruby file:
433
+ #
434
+ # {include:file:examples/test.rb}
435
+
436
+ ### Rendering Objects `{render:...}`
437
+
438
+ Entire objects can also be rendered in place in documentation. This can be
439
+ used for guide-style documentation which does not document the entire source
440
+ tree, but instead selectively renders important classes or methods. Consider
441
+ the following documentation inside of a README file:
442
+
443
+ !!!plain
444
+ = igLatinPay!
445
+
446
+ This library adds pig latin methods to the string class, allowing you
447
+ to transform sentences into pig latin.
448
+
449
+ {render:String#pig_latin}
450
+
451
+ You can also un-pig-latin-ify a word or sentence:
452
+
453
+ {render:String#de_pig_latin}
454
+
455
+ The above would render the methods in place inside the README document,
456
+ allowing you to summarize a small library in a single file.
457
+
458
+ <a name="using"></a>
459
+
460
+ ## Using YARD to Generate Documentation
461
+
462
+ ### `yard` Executable
463
+
464
+ YARD ships with a single executable aptly named `yard`. In addition to
465
+ generating standard documentation for your project, you would use this tool
466
+ if you wanted to:
467
+
468
+ * Document all installed gems
469
+ * Run a local documentation server
470
+ * Generate UML diagrams using [Graphviz][graphviz]
471
+ * View `ri`-style documentation
472
+ * Diff your documentation
473
+ * Analyze documentation statistics.
474
+
475
+ The following commands are available in YARD 0.6.x (see `yard help` for a
476
+ full list):
477
+
478
+ Usage: yard <command> [options]
479
+
480
+ Commands:
481
+ config Views or edits current global configuration
482
+ diff Returns the object diff of two gems or .yardoc files
483
+ doc Generates documentation
484
+ gems Builds YARD index for gems
485
+ graph Graphs class diagram using Graphviz
486
+ help Retrieves help for a command
487
+ ri A tool to view documentation in the console like `ri`
488
+ server Runs a local documentation server
489
+ stats Prints documentation statistics on a set of files
490
+
491
+ Note that `yardoc` is an alias for `yard doc`, and `yri` is an alias for
492
+ `yard ri`. These commands are maintained for backwards compatibility.
493
+
494
+ ### `.yardopts` Options File
495
+
496
+ Unless your documentation is very small, you'll end up needing to run `yardoc`
497
+ with many options. The `yardoc` tool will use the options found in this file.
498
+ It is recommended to check this in to your repository and distribute it with
499
+ your source. This file is placed at the root of your project (in the directory
500
+ you run `yardoc` from) and contains all of arguments you would otherwise pass
501
+ to the command-line tool. For instance, if you often type:
502
+
503
+ yardoc --no-private --protected app/**/*.rb - README LEGAL COPYING
504
+
505
+ You can place the following into your `.yardopts`:
506
+
507
+ --no-private --protected app/**/*.rb - README LEGAL COPYING
508
+
509
+ This way, you only need to type:
510
+
511
+ yardoc
512
+
513
+ Any extra switches passed to the command-line now will be appended to your
514
+ `.yardopts` options.
515
+
516
+ Note that options for `yardoc` are discussed in the {file:README.md README},
517
+ and a full overview of the `.yardopts` file can be found in {YARD::CLI::Yardoc}.
518
+
519
+ ### Documenting Extra Files
520
+
521
+ "Extra files" are extra guide style documents that help to give a brief overview
522
+ of how to use your library/framework, as well as any extra information that
523
+ might be vital for your users. The most common "extra file" is the README,
524
+ which is automatically detected by YARD if found in the root of your project
525
+ (any file starting with `README*`). You can specify extra files on the command
526
+ line (or in the `.yardopts` file) by listing them after the '-' separator:
527
+
528
+ yardoc lib/**/*.rb ext/**/*.{c,rb} - LICENSE.txt
529
+
530
+ Note that the README will automatically be picked up, so you do not need to
531
+ specify it. If you don't want to modify the default file globs, you can ignore
532
+ the first set of arguments:
533
+
534
+ yardoc - LICENSE.txt
535
+
536
+ Below you can read about how to customize the look of these extra files, both
537
+ with markup and pretty titles.
538
+
539
+ #### Adding Meta-Data to Extra Files
540
+
541
+ You can add YARD-style `@tag` metadata to the top of any extra file if prefixed
542
+ by a `#` hash comment. YARD allows for arbitrary meta-data, but pays special
543
+ attention to the tags `@markup`, `@encoding`, and `@title`. Note that there
544
+ cannot be any whitespace before the tags. Here is an example of some tag data
545
+ in a README:
546
+
547
+ # @markup markdown
548
+ # @title The Best Library in the World!
549
+ # @author The Author Name
550
+
551
+ This is the best library you will ever meet. Lipsum ...
552
+
553
+ The `@markup` tag allows you to specify a markup format to use for the file,
554
+ including "markdown", "textile", "rdoc", "ruby", "text", "html", or "none"
555
+ (no markup). This can be used when the markup cannot be auto-detected using
556
+ the extension of the filename, if the file has no extension, or if you want
557
+ to override the auto-detection.
558
+
559
+ By using `@encoding` you can specify a non-standard encoding. Note that
560
+ `yardoc --charset` sets the global encoding (for all comments / files),
561
+ so if you are using unicode across all your files, you can specify it there.
562
+ Using the `@encoding` tag might be used to override the default global
563
+ charset, say, if you had a localized `README.jp` file with SJIS data.
564
+ Also note that this only affects Ruby 1.9.x, as Ruby 1.8 is not properly
565
+ encoding aware.
566
+
567
+ The `@title` tag allows you to specify a full title name for the document.
568
+ By default, YARD uses the filename as the title of the document and lists
569
+ it in the file list in the index and file menu. In some cases, the file name
570
+ might not be descriptive enough, so YARD allows you to specify a full title:
571
+
572
+ contents of TITLE.txt:
573
+ # @title The Title of The Document
574
+
575
+ Currently all other meta-data is hidden from view, though accessible
576
+ programmatically using the {YARD::CodeObjects::ExtraFileObject} class.
577
+
578
+ You can wrap the meta data section in an HTML comment to prevent it
579
+ from being displayed in rendered markdown on GitHub:
580
+
581
+ <!--
582
+ # @markup markdown
583
+ # @title The Best Library in the World!
584
+ # @author The Author Name
585
+ -->
586
+
587
+ This is the best library you will ever meet. Lipsum ...
588
+
589
+ <a name="config"></a>
590
+
591
+ ## Configuring YARD
592
+
593
+ YARD (0.6.2+) supports a global configuration file stored in `~/.yard/config`.
594
+ This file is stored as a YAML file and can contain arbitrary keys and values
595
+ that can be used by YARD at run-time. YARD defines specific keys that are used
596
+ to control various features, and they are listed in {YARD::Config::DEFAULT_CONFIG_OPTIONS}.
597
+ A sample configuration file might look like:
598
+
599
+ :load_plugins: false
600
+ :ignored_plugins:
601
+ - my_plugin
602
+ - my_other_plugin
603
+ :autoload_plugins:
604
+ - my_autoload_plugin
605
+ :safe_mode: false
606
+
607
+ You can also view and edit these configuration options from the commandline
608
+ using the `yard config` command. To list your configuration, use `yard config --list`.
609
+ To view a key, use `yard config ITEM`, and to set it, use `yard config ITEM VALUE`.
610
+
611
+ <a name="extending"></a>
612
+
613
+ ## Extending YARD
614
+
615
+ There are many ways to extend YARD to support non-standard Ruby syntax (DSLs),
616
+ add new meta-data tags or programmatically access the intermediate metadata
617
+ and documentation from code. An overview of YARD's full architecture can be
618
+ found in the {file:docs/Overview.md} document.
619
+
620
+ For information on adding support for Ruby DSLs, see the {file:docs/Handlers.md}
621
+ and {file:docs/Parser.md} architecture documents.
622
+
623
+ For information on adding extra tags, see {file:docs/Tags.md}.
624
+
625
+ For information on accessing the data YARD stores about your documentation,
626
+ look at the {file:docs/CodeObjects.md} architecture document.
627
+
628
+ <a name="templating"></a>
629
+
630
+ ## Templating YARD
631
+
632
+ In many cases you may want to change the style of YARD's templates or add extra
633
+ information after extending it. The {file:docs/Templates.md} architecture
634
+ document covers the basics of how YARD's templating system works.
635
+
636
+ <a name="plugins"></a>
637
+
638
+ ## Plugin Support
639
+
640
+ YARD will allow any RubyGem installed on your system (or in your Gemfile)
641
+ to be loaded as a plugin provided it has a name with the prefix of
642
+ `yard-` or `yard_`. In order to load a plugin, use the `--plugin`
643
+ switch with the short-name (name minus the `yard-` prefix) or full-name
644
+ of the gem:
645
+
646
+ $ gem install yard-custom-plugin
647
+ ...
648
+ $ yard doc --plugin custom-plugin
649
+ or
650
+ $ yard doc --plugin yard-custom-plugin
651
+
652
+ Note: you can also put this switch in your `.yardopts` file. See the
653
+ `.yardopts` section above for more information.
654
+
655
+ You can use this functionality to load a custom plugin that
656
+ [extend](#extending) YARD's functionality. A good example of this
657
+ is the [yard-rspec][yard-rspec] plugin, which adds [RSpec][rspec] specifications
658
+ to your documentation (`yardoc` and `yri`). You can try it out by installing
659
+ the gem or cloning the project and trying the example:
660
+
661
+ $ gem install yard-rspec
662
+
663
+ You can then load the plugin with:
664
+
665
+ $ yard doc --plugin rspec
666
+
667
+ YARD also provides a way to temporarily disable plugins on a per-user basis.
668
+ To disable a plugin create the file `~/.yard/ignored_plugins` with a list
669
+ of plugin names separated by newlines. Note that the `.yard` directory might
670
+ not exist, so you may need to create it.
671
+
672
+ You may find some useful YARD plugins on [RubyGems][RubyGemsQuery] or with
673
+ a [Google advanced query][GoogleAdvancedQuery].
674
+
675
+ [graphviz]:http://www.graphviz.org
676
+ [yard-rspec]:http://github.com/lsegal/yard-spec-plugin
677
+ [rspec]:http://rspec.info
678
+ [GoogleAdvancedQuery]:https://www.google.com/search?q=site%3Arubygems.org+intitle%3A%22yard-%22+OR+intitle%3A%22yard_%22
679
+ [RubyGemsQuery]:https://rubygems.org/search?utf8=%E2%9C%93&query=name%3A+yard