kinetic_sdk 5.0.19 → 5.0.20

Sign up to get free protection for your applications and to get access to all the features.
Files changed (661) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +9 -0
  3. data/README.md +1 -1
  4. data/gems/{mime-types-3.3.1 → mime-types-3.4.1}/Code-of-Conduct.md +10 -10
  5. data/gems/mime-types-3.4.1/Contributing.md +132 -0
  6. data/gems/mime-types-3.4.1/History.md +269 -0
  7. data/gems/{mime-types-3.3.1 → mime-types-3.4.1}/Licence.md +3 -3
  8. data/gems/{mime-types-3.3.1 → mime-types-3.4.1}/Manifest.txt +0 -0
  9. data/gems/{mime-types-3.3.1 → mime-types-3.4.1}/README.rdoc +1 -0
  10. data/gems/mime-types-3.4.1/Rakefile +270 -0
  11. data/gems/{mime-types-3.3.1 → mime-types-3.4.1}/lib/mime/type/columnar.rb +3 -3
  12. data/gems/{mime-types-3.3.1 → mime-types-3.4.1}/lib/mime/type.rb +141 -94
  13. data/gems/{mime-types-3.3.1 → mime-types-3.4.1}/lib/mime/types/_columnar.rb +20 -19
  14. data/gems/{mime-types-3.3.1 → mime-types-3.4.1}/lib/mime/types/cache.rb +8 -8
  15. data/gems/{mime-types-3.3.1 → mime-types-3.4.1}/lib/mime/types/columnar.rb +1 -1
  16. data/gems/{mime-types-3.3.1 → mime-types-3.4.1}/lib/mime/types/container.rb +14 -14
  17. data/gems/{mime-types-3.3.1 → mime-types-3.4.1}/lib/mime/types/deprecations.rb +15 -11
  18. data/gems/{mime-types-3.3.1 → mime-types-3.4.1}/lib/mime/types/full.rb +2 -2
  19. data/gems/{mime-types-3.3.1 → mime-types-3.4.1}/lib/mime/types/loader.rb +28 -15
  20. data/gems/{mime-types-3.3.1 → mime-types-3.4.1}/lib/mime/types/logger.rb +3 -5
  21. data/gems/{mime-types-3.3.1 → mime-types-3.4.1}/lib/mime/types/registry.rb +7 -7
  22. data/gems/{mime-types-3.3.1 → mime-types-3.4.1}/lib/mime/types.rb +18 -16
  23. data/gems/{mime-types-3.3.1 → mime-types-3.4.1}/lib/mime-types.rb +1 -1
  24. data/gems/{mime-types-3.3.1 → mime-types-3.4.1}/test/bad-fixtures/malformed +0 -0
  25. data/gems/{mime-types-3.3.1 → mime-types-3.4.1}/test/fixture/json.json +0 -0
  26. data/gems/{mime-types-3.3.1 → mime-types-3.4.1}/test/fixture/old-data +0 -0
  27. data/gems/{mime-types-3.3.1 → mime-types-3.4.1}/test/fixture/yaml.yaml +0 -0
  28. data/gems/mime-types-3.4.1/test/minitest_helper.rb +11 -0
  29. data/gems/mime-types-3.4.1/test/test_mime_type.rb +621 -0
  30. data/gems/mime-types-3.4.1/test/test_mime_types.rb +169 -0
  31. data/gems/mime-types-3.4.1/test/test_mime_types_cache.rb +118 -0
  32. data/gems/mime-types-3.4.1/test/test_mime_types_class.rb +159 -0
  33. data/gems/mime-types-3.4.1/test/test_mime_types_lazy.rb +49 -0
  34. data/gems/mime-types-3.4.1/test/test_mime_types_loader.rb +32 -0
  35. data/gems/{mime-types-data-3.2021.0225 → mime-types-data-3.2022.0105}/Code-of-Conduct.md +12 -12
  36. data/gems/{mime-types-data-3.2021.0225 → mime-types-data-3.2022.0105}/Contributing.md +37 -20
  37. data/gems/{mime-types-data-3.2021.0225 → mime-types-data-3.2022.0105}/History.md +46 -12
  38. data/gems/{websocket-driver-0.6.5-java/LICENSE.md → mime-types-data-3.2022.0105/Licence.md} +7 -5
  39. data/gems/{mime-types-data-3.2021.0225 → mime-types-data-3.2022.0105}/Manifest.txt +3 -0
  40. data/gems/{mime-types-data-3.2021.0225 → mime-types-data-3.2022.0105}/README.md +11 -1
  41. data/gems/mime-types-data-3.2022.0105/Rakefile +155 -0
  42. data/gems/mime-types-data-3.2022.0105/data/content_type_mime.db +878 -0
  43. data/gems/mime-types-data-3.2022.0105/data/ext_mime.db +1198 -0
  44. data/gems/mime-types-data-3.2022.0105/data/mime-types.json +1 -0
  45. data/gems/{mime-types-data-3.2021.0225 → mime-types-data-3.2022.0105}/data/mime.content_type.column +69 -1
  46. data/gems/{mime-types-data-3.2021.0225 → mime-types-data-3.2022.0105}/data/mime.docs.column +68 -0
  47. data/gems/{mime-types-data-3.2021.0225 → mime-types-data-3.2022.0105}/data/mime.encoding.column +68 -0
  48. data/gems/mime-types-data-3.2022.0105/data/mime.flags.column +2383 -0
  49. data/gems/{mime-types-data-3.2021.0225 → mime-types-data-3.2022.0105}/data/mime.friendly.column +68 -0
  50. data/gems/{mime-types-data-3.2021.0225 → mime-types-data-3.2022.0105}/data/mime.pext.column +68 -0
  51. data/gems/{mime-types-data-3.2021.0225 → mime-types-data-3.2022.0105}/data/mime.use_instead.column +71 -3
  52. data/gems/{mime-types-data-3.2021.0225 → mime-types-data-3.2022.0105}/data/mime.xrefs.column +98 -30
  53. data/gems/{mime-types-data-3.2021.0225 → mime-types-data-3.2022.0105}/lib/mime/types/data.rb +2 -2
  54. data/gems/{mime-types-data-3.2021.0225 → mime-types-data-3.2022.0105}/lib/mime-types-data.rb +1 -1
  55. data/gems/{mime-types-data-3.2021.0225 → mime-types-data-3.2022.0105}/types/application.yaml +390 -24
  56. data/gems/{mime-types-data-3.2021.0225 → mime-types-data-3.2022.0105}/types/audio.yaml +2 -0
  57. data/gems/{mime-types-data-3.2021.0225 → mime-types-data-3.2022.0105}/types/chemical.yaml +0 -0
  58. data/gems/{mime-types-data-3.2021.0225 → mime-types-data-3.2022.0105}/types/conference.yaml +0 -0
  59. data/gems/{mime-types-data-3.2021.0225 → mime-types-data-3.2022.0105}/types/drawing.yaml +0 -0
  60. data/gems/{mime-types-data-3.2021.0225 → mime-types-data-3.2022.0105}/types/font.yaml +0 -0
  61. data/gems/{mime-types-data-3.2021.0225 → mime-types-data-3.2022.0105}/types/image.yaml +4 -3
  62. data/gems/{mime-types-data-3.2021.0225 → mime-types-data-3.2022.0105}/types/message.yaml +9 -4
  63. data/gems/{mime-types-data-3.2021.0225 → mime-types-data-3.2022.0105}/types/model.yaml +59 -0
  64. data/gems/{mime-types-data-3.2021.0225 → mime-types-data-3.2022.0105}/types/multipart.yaml +2 -2
  65. data/gems/mime-types-data-3.2022.0105/types/provisional-standard-types.yaml +145 -0
  66. data/gems/{mime-types-data-3.2021.0225 → mime-types-data-3.2022.0105}/types/text.yaml +24 -3
  67. data/gems/{mime-types-data-3.2021.0225 → mime-types-data-3.2022.0105}/types/video.yaml +27 -0
  68. data/gems/{mime-types-data-3.2021.0225 → mime-types-data-3.2022.0105}/types/world.yaml +0 -0
  69. data/gems/rake-13.0.1/CONTRIBUTING.rdoc +43 -0
  70. data/gems/rake-13.0.1/Gemfile +10 -0
  71. data/gems/rake-13.0.1/History.rdoc +2368 -0
  72. data/gems/{parallel-1.12.1/MIT-LICENSE.txt → rake-13.0.1/MIT-LICENSE} +2 -1
  73. data/gems/rake-13.0.1/README.rdoc +155 -0
  74. data/gems/rake-13.0.1/Rakefile +41 -0
  75. data/gems/rake-13.0.1/bin/bundle +105 -0
  76. data/gems/rake-13.0.1/bin/console +7 -0
  77. data/gems/rake-13.0.1/bin/rake +29 -0
  78. data/gems/rake-13.0.1/bin/rdoc +29 -0
  79. data/gems/rake-13.0.1/bin/rubocop +29 -0
  80. data/gems/rake-13.0.1/bin/setup +6 -0
  81. data/gems/rake-13.0.1/doc/command_line_usage.rdoc +158 -0
  82. data/gems/rake-13.0.1/doc/example/Rakefile1 +38 -0
  83. data/gems/rake-13.0.1/doc/example/Rakefile2 +35 -0
  84. data/gems/rake-13.0.1/doc/example/a.c +6 -0
  85. data/gems/rake-13.0.1/doc/example/b.c +6 -0
  86. data/gems/rake-13.0.1/doc/example/main.c +11 -0
  87. data/gems/rake-13.0.1/doc/glossary.rdoc +42 -0
  88. data/gems/rake-13.0.1/doc/jamis.rb +592 -0
  89. data/gems/rake-13.0.1/doc/proto_rake.rdoc +127 -0
  90. data/gems/rake-13.0.1/doc/rake.1 +156 -0
  91. data/gems/rake-13.0.1/doc/rakefile.rdoc +622 -0
  92. data/gems/rake-13.0.1/doc/rational.rdoc +151 -0
  93. data/gems/rake-13.0.1/exe/rake +27 -0
  94. data/gems/rake-13.0.1/lib/rake/application.rb +824 -0
  95. data/gems/rake-13.0.1/lib/rake/backtrace.rb +24 -0
  96. data/gems/rake-13.0.1/lib/rake/clean.rb +78 -0
  97. data/gems/rake-13.0.1/lib/rake/cloneable.rb +17 -0
  98. data/gems/rake-13.0.1/lib/rake/cpu_counter.rb +107 -0
  99. data/gems/rake-13.0.1/lib/rake/default_loader.rb +15 -0
  100. data/gems/rake-13.0.1/lib/rake/dsl_definition.rb +195 -0
  101. data/gems/rake-13.0.1/lib/rake/early_time.rb +22 -0
  102. data/gems/rake-13.0.1/lib/rake/ext/core.rb +26 -0
  103. data/gems/rake-13.0.1/lib/rake/ext/string.rb +176 -0
  104. data/gems/rake-13.0.1/lib/rake/file_creation_task.rb +25 -0
  105. data/gems/rake-13.0.1/lib/rake/file_list.rb +435 -0
  106. data/gems/rake-13.0.1/lib/rake/file_task.rb +54 -0
  107. data/gems/rake-13.0.1/lib/rake/file_utils.rb +134 -0
  108. data/gems/rake-13.0.1/lib/rake/file_utils_ext.rb +134 -0
  109. data/gems/rake-13.0.1/lib/rake/invocation_chain.rb +57 -0
  110. data/gems/rake-13.0.1/lib/rake/invocation_exception_mixin.rb +17 -0
  111. data/gems/rake-13.0.1/lib/rake/late_time.rb +18 -0
  112. data/gems/rake-13.0.1/lib/rake/linked_list.rb +112 -0
  113. data/gems/rake-13.0.1/lib/rake/loaders/makefile.rb +54 -0
  114. data/gems/rake-13.0.1/lib/rake/multi_task.rb +14 -0
  115. data/gems/rake-13.0.1/lib/rake/name_space.rb +38 -0
  116. data/gems/rake-13.0.1/lib/rake/packagetask.rb +222 -0
  117. data/gems/rake-13.0.1/lib/rake/phony.rb +16 -0
  118. data/gems/rake-13.0.1/lib/rake/private_reader.rb +21 -0
  119. data/gems/rake-13.0.1/lib/rake/promise.rb +100 -0
  120. data/gems/rake-13.0.1/lib/rake/pseudo_status.rb +30 -0
  121. data/gems/rake-13.0.1/lib/rake/rake_module.rb +67 -0
  122. data/gems/rake-13.0.1/lib/rake/rake_test_loader.rb +27 -0
  123. data/gems/rake-13.0.1/lib/rake/rule_recursion_overflow_error.rb +20 -0
  124. data/gems/rake-13.0.1/lib/rake/scope.rb +43 -0
  125. data/gems/rake-13.0.1/lib/rake/task.rb +434 -0
  126. data/gems/rake-13.0.1/lib/rake/task_argument_error.rb +8 -0
  127. data/gems/rake-13.0.1/lib/rake/task_arguments.rb +109 -0
  128. data/gems/rake-13.0.1/lib/rake/task_manager.rb +331 -0
  129. data/gems/rake-13.0.1/lib/rake/tasklib.rb +12 -0
  130. data/gems/rake-13.0.1/lib/rake/testtask.rb +224 -0
  131. data/gems/rake-13.0.1/lib/rake/thread_history_display.rb +49 -0
  132. data/gems/rake-13.0.1/lib/rake/thread_pool.rb +163 -0
  133. data/gems/rake-13.0.1/lib/rake/trace_output.rb +23 -0
  134. data/gems/rake-13.0.1/lib/rake/version.rb +10 -0
  135. data/gems/rake-13.0.1/lib/rake/win32.rb +51 -0
  136. data/gems/rake-13.0.1/lib/rake.rb +71 -0
  137. data/gems/rake-13.0.1/rake.gemspec +43 -0
  138. data/gems/yard-0.9.25/CHANGELOG.md +804 -0
  139. data/gems/yard-0.9.25/CODE_OF_CONDUCT.md +15 -0
  140. data/gems/yard-0.9.25/CONTRIBUTING.md +140 -0
  141. data/gems/yard-0.9.25/Dockerfile.samus +28 -0
  142. data/gems/yard-0.9.25/Gemfile +32 -0
  143. data/gems/yard-0.9.25/LEGAL +66 -0
  144. data/gems/yard-0.9.25/LICENSE +22 -0
  145. data/gems/yard-0.9.25/README.md +325 -0
  146. data/gems/yard-0.9.25/Rakefile +39 -0
  147. data/gems/yard-0.9.25/SECURITY.md +26 -0
  148. data/gems/yard-0.9.25/benchmarks/builtins_vs_eval.rb +24 -0
  149. data/gems/yard-0.9.25/benchmarks/concat_vs_join.rb +13 -0
  150. data/gems/yard-0.9.25/benchmarks/erb_vs_erubis.rb +54 -0
  151. data/gems/yard-0.9.25/benchmarks/format_args.rb +47 -0
  152. data/gems/yard-0.9.25/benchmarks/generation.rb +38 -0
  153. data/gems/yard-0.9.25/benchmarks/marshal_vs_dbm.rb +64 -0
  154. data/gems/yard-0.9.25/benchmarks/parsing.rb +46 -0
  155. data/gems/yard-0.9.25/benchmarks/pathname_vs_string.rb +51 -0
  156. data/gems/yard-0.9.25/benchmarks/rdoc_vs_yardoc.rb +11 -0
  157. data/gems/yard-0.9.25/benchmarks/registry_store_types.rb +49 -0
  158. data/gems/yard-0.9.25/benchmarks/ri_vs_yri.rb +19 -0
  159. data/gems/yard-0.9.25/benchmarks/ripper_parser.rb +13 -0
  160. data/gems/yard-0.9.25/benchmarks/splat_vs_flatten.rb +13 -0
  161. data/gems/yard-0.9.25/benchmarks/template_erb.rb +23 -0
  162. data/gems/yard-0.9.25/benchmarks/template_format.rb +7 -0
  163. data/gems/yard-0.9.25/benchmarks/template_profile.rb +18 -0
  164. data/gems/yard-0.9.25/benchmarks/yri_cache.rb +20 -0
  165. data/gems/yard-0.9.25/bin/yard +13 -0
  166. data/gems/yard-0.9.25/bin/yardoc +13 -0
  167. data/gems/yard-0.9.25/bin/yri +13 -0
  168. data/gems/yard-0.9.25/docs/CodeObjects.md +115 -0
  169. data/gems/yard-0.9.25/docs/GettingStarted.md +679 -0
  170. data/gems/yard-0.9.25/docs/Handlers.md +152 -0
  171. data/gems/yard-0.9.25/docs/Overview.md +61 -0
  172. data/gems/yard-0.9.25/docs/Parser.md +191 -0
  173. data/gems/yard-0.9.25/docs/Tags.md +283 -0
  174. data/gems/yard-0.9.25/docs/TagsArch.md +123 -0
  175. data/gems/yard-0.9.25/docs/Templates.md +496 -0
  176. data/gems/yard-0.9.25/docs/WhatsNew.md +1245 -0
  177. data/gems/yard-0.9.25/docs/images/code-objects-class-diagram.png +0 -0
  178. data/gems/yard-0.9.25/docs/images/handlers-class-diagram.png +0 -0
  179. data/gems/yard-0.9.25/docs/images/overview-class-diagram.png +0 -0
  180. data/gems/yard-0.9.25/docs/images/parser-class-diagram.png +0 -0
  181. data/gems/yard-0.9.25/docs/images/tags-class-diagram.png +0 -0
  182. data/gems/yard-0.9.25/docs/templates/default/fulldoc/html/full_list_tag.erb +9 -0
  183. data/gems/yard-0.9.25/docs/templates/default/fulldoc/html/setup.rb +6 -0
  184. data/gems/yard-0.9.25/docs/templates/default/layout/html/setup.rb +9 -0
  185. data/gems/yard-0.9.25/docs/templates/default/layout/html/tag_list.erb +11 -0
  186. data/gems/yard-0.9.25/docs/templates/default/yard_tags/html/list.erb +18 -0
  187. data/gems/yard-0.9.25/docs/templates/default/yard_tags/html/setup.rb +26 -0
  188. data/gems/yard-0.9.25/docs/templates/plugin.rb +70 -0
  189. data/gems/yard-0.9.25/lib/rubygems_plugin.rb +9 -0
  190. data/gems/yard-0.9.25/lib/yard/autoload.rb +308 -0
  191. data/gems/yard-0.9.25/lib/yard/cli/command.rb +85 -0
  192. data/gems/yard-0.9.25/lib/yard/cli/command_parser.rb +93 -0
  193. data/gems/yard-0.9.25/lib/yard/cli/config.rb +198 -0
  194. data/gems/yard-0.9.25/lib/yard/cli/diff.rb +273 -0
  195. data/gems/yard-0.9.25/lib/yard/cli/display.rb +69 -0
  196. data/gems/yard-0.9.25/lib/yard/cli/gems.rb +84 -0
  197. data/gems/yard-0.9.25/lib/yard/cli/graph.rb +125 -0
  198. data/gems/yard-0.9.25/lib/yard/cli/help.rb +20 -0
  199. data/gems/yard-0.9.25/lib/yard/cli/i18n.rb +70 -0
  200. data/gems/yard-0.9.25/lib/yard/cli/list.rb +23 -0
  201. data/gems/yard-0.9.25/lib/yard/cli/markup_types.rb +32 -0
  202. data/gems/yard-0.9.25/lib/yard/cli/server.rb +266 -0
  203. data/gems/yard-0.9.25/lib/yard/cli/stats.rb +231 -0
  204. data/gems/yard-0.9.25/lib/yard/cli/yardoc.rb +789 -0
  205. data/gems/yard-0.9.25/lib/yard/cli/yardopts_command.rb +110 -0
  206. data/gems/yard-0.9.25/lib/yard/cli/yri.rb +215 -0
  207. data/gems/yard-0.9.25/lib/yard/code_objects/base.rb +622 -0
  208. data/gems/yard-0.9.25/lib/yard/code_objects/class_object.rb +146 -0
  209. data/gems/yard-0.9.25/lib/yard/code_objects/class_variable_object.rb +11 -0
  210. data/gems/yard-0.9.25/lib/yard/code_objects/constant_object.rb +16 -0
  211. data/gems/yard-0.9.25/lib/yard/code_objects/extended_method_object.rb +24 -0
  212. data/gems/yard-0.9.25/lib/yard/code_objects/extra_file_object.rb +134 -0
  213. data/gems/yard-0.9.25/lib/yard/code_objects/macro_object.rb +172 -0
  214. data/gems/yard-0.9.25/lib/yard/code_objects/method_object.rb +196 -0
  215. data/gems/yard-0.9.25/lib/yard/code_objects/module_object.rb +21 -0
  216. data/gems/yard-0.9.25/lib/yard/code_objects/namespace_mapper.rb +141 -0
  217. data/gems/yard-0.9.25/lib/yard/code_objects/namespace_object.rb +200 -0
  218. data/gems/yard-0.9.25/lib/yard/code_objects/proxy.rb +245 -0
  219. data/gems/yard-0.9.25/lib/yard/code_objects/root_object.rb +19 -0
  220. data/gems/yard-0.9.25/lib/yard/config.rb +270 -0
  221. data/gems/yard-0.9.25/lib/yard/core_ext/array.rb +16 -0
  222. data/gems/yard-0.9.25/lib/yard/core_ext/file.rb +69 -0
  223. data/gems/yard-0.9.25/lib/yard/core_ext/hash.rb +16 -0
  224. data/gems/yard-0.9.25/lib/yard/core_ext/insertion.rb +63 -0
  225. data/gems/yard-0.9.25/lib/yard/core_ext/module.rb +11 -0
  226. data/gems/yard-0.9.25/lib/yard/core_ext/string.rb +68 -0
  227. data/gems/yard-0.9.25/lib/yard/core_ext/symbol_hash.rb +75 -0
  228. data/gems/yard-0.9.25/lib/yard/docstring.rb +386 -0
  229. data/gems/yard-0.9.25/lib/yard/docstring_parser.rb +345 -0
  230. data/gems/yard-0.9.25/lib/yard/gem_index.rb +29 -0
  231. data/gems/yard-0.9.25/lib/yard/globals.rb +22 -0
  232. data/gems/yard-0.9.25/lib/yard/handlers/base.rb +595 -0
  233. data/gems/yard-0.9.25/lib/yard/handlers/c/alias_handler.rb +16 -0
  234. data/gems/yard-0.9.25/lib/yard/handlers/c/attribute_handler.rb +13 -0
  235. data/gems/yard-0.9.25/lib/yard/handlers/c/base.rb +164 -0
  236. data/gems/yard-0.9.25/lib/yard/handlers/c/class_handler.rb +27 -0
  237. data/gems/yard-0.9.25/lib/yard/handlers/c/constant_handler.rb +13 -0
  238. data/gems/yard-0.9.25/lib/yard/handlers/c/handler_methods.rb +212 -0
  239. data/gems/yard-0.9.25/lib/yard/handlers/c/init_handler.rb +20 -0
  240. data/gems/yard-0.9.25/lib/yard/handlers/c/method_handler.rb +45 -0
  241. data/gems/yard-0.9.25/lib/yard/handlers/c/mixin_handler.rb +21 -0
  242. data/gems/yard-0.9.25/lib/yard/handlers/c/module_handler.rb +17 -0
  243. data/gems/yard-0.9.25/lib/yard/handlers/c/override_comment_handler.rb +31 -0
  244. data/gems/yard-0.9.25/lib/yard/handlers/c/path_handler.rb +11 -0
  245. data/gems/yard-0.9.25/lib/yard/handlers/c/struct_handler.rb +13 -0
  246. data/gems/yard-0.9.25/lib/yard/handlers/c/symbol_handler.rb +8 -0
  247. data/gems/yard-0.9.25/lib/yard/handlers/common/method_handler.rb +19 -0
  248. data/gems/yard-0.9.25/lib/yard/handlers/processor.rb +200 -0
  249. data/gems/yard-0.9.25/lib/yard/handlers/ruby/alias_handler.rb +45 -0
  250. data/gems/yard-0.9.25/lib/yard/handlers/ruby/attribute_handler.rb +87 -0
  251. data/gems/yard-0.9.25/lib/yard/handlers/ruby/base.rb +165 -0
  252. data/gems/yard-0.9.25/lib/yard/handlers/ruby/class_condition_handler.rb +92 -0
  253. data/gems/yard-0.9.25/lib/yard/handlers/ruby/class_handler.rb +119 -0
  254. data/gems/yard-0.9.25/lib/yard/handlers/ruby/class_variable_handler.rb +17 -0
  255. data/gems/yard-0.9.25/lib/yard/handlers/ruby/comment_handler.rb +10 -0
  256. data/gems/yard-0.9.25/lib/yard/handlers/ruby/constant_handler.rb +55 -0
  257. data/gems/yard-0.9.25/lib/yard/handlers/ruby/decorator_handler_methods.rb +123 -0
  258. data/gems/yard-0.9.25/lib/yard/handlers/ruby/dsl_handler.rb +15 -0
  259. data/gems/yard-0.9.25/lib/yard/handlers/ruby/dsl_handler_methods.rb +96 -0
  260. data/gems/yard-0.9.25/lib/yard/handlers/ruby/exception_handler.rb +27 -0
  261. data/gems/yard-0.9.25/lib/yard/handlers/ruby/extend_handler.rb +22 -0
  262. data/gems/yard-0.9.25/lib/yard/handlers/ruby/legacy/alias_handler.rb +37 -0
  263. data/gems/yard-0.9.25/lib/yard/handlers/ruby/legacy/attribute_handler.rb +65 -0
  264. data/gems/yard-0.9.25/lib/yard/handlers/ruby/legacy/base.rb +245 -0
  265. data/gems/yard-0.9.25/lib/yard/handlers/ruby/legacy/class_condition_handler.rb +83 -0
  266. data/gems/yard-0.9.25/lib/yard/handlers/ruby/legacy/class_handler.rb +113 -0
  267. data/gems/yard-0.9.25/lib/yard/handlers/ruby/legacy/class_variable_handler.rb +15 -0
  268. data/gems/yard-0.9.25/lib/yard/handlers/ruby/legacy/comment_handler.rb +10 -0
  269. data/gems/yard-0.9.25/lib/yard/handlers/ruby/legacy/constant_handler.rb +29 -0
  270. data/gems/yard-0.9.25/lib/yard/handlers/ruby/legacy/dsl_handler.rb +17 -0
  271. data/gems/yard-0.9.25/lib/yard/handlers/ruby/legacy/exception_handler.rb +13 -0
  272. data/gems/yard-0.9.25/lib/yard/handlers/ruby/legacy/extend_handler.rb +21 -0
  273. data/gems/yard-0.9.25/lib/yard/handlers/ruby/legacy/method_handler.rb +90 -0
  274. data/gems/yard-0.9.25/lib/yard/handlers/ruby/legacy/mixin_handler.rb +39 -0
  275. data/gems/yard-0.9.25/lib/yard/handlers/ruby/legacy/module_function_handler.rb +19 -0
  276. data/gems/yard-0.9.25/lib/yard/handlers/ruby/legacy/module_handler.rb +12 -0
  277. data/gems/yard-0.9.25/lib/yard/handlers/ruby/legacy/private_class_method_handler.rb +22 -0
  278. data/gems/yard-0.9.25/lib/yard/handlers/ruby/legacy/private_constant_handler.rb +22 -0
  279. data/gems/yard-0.9.25/lib/yard/handlers/ruby/legacy/visibility_handler.rb +17 -0
  280. data/gems/yard-0.9.25/lib/yard/handlers/ruby/legacy/yield_handler.rb +29 -0
  281. data/gems/yard-0.9.25/lib/yard/handlers/ruby/method_condition_handler.rb +9 -0
  282. data/gems/yard-0.9.25/lib/yard/handlers/ruby/method_handler.rb +104 -0
  283. data/gems/yard-0.9.25/lib/yard/handlers/ruby/mixin_handler.rb +49 -0
  284. data/gems/yard-0.9.25/lib/yard/handlers/ruby/module_function_handler.rb +27 -0
  285. data/gems/yard-0.9.25/lib/yard/handlers/ruby/module_handler.rb +12 -0
  286. data/gems/yard-0.9.25/lib/yard/handlers/ruby/private_class_method_handler.rb +14 -0
  287. data/gems/yard-0.9.25/lib/yard/handlers/ruby/private_constant_handler.rb +43 -0
  288. data/gems/yard-0.9.25/lib/yard/handlers/ruby/public_class_method_handler.rb +14 -0
  289. data/gems/yard-0.9.25/lib/yard/handlers/ruby/struct_handler_methods.rb +143 -0
  290. data/gems/yard-0.9.25/lib/yard/handlers/ruby/visibility_handler.rb +22 -0
  291. data/gems/yard-0.9.25/lib/yard/handlers/ruby/yield_handler.rb +31 -0
  292. data/gems/yard-0.9.25/lib/yard/i18n/locale.rb +67 -0
  293. data/gems/yard-0.9.25/lib/yard/i18n/message.rb +57 -0
  294. data/gems/yard-0.9.25/lib/yard/i18n/messages.rb +56 -0
  295. data/gems/yard-0.9.25/lib/yard/i18n/po_parser.rb +61 -0
  296. data/gems/yard-0.9.25/lib/yard/i18n/pot_generator.rb +290 -0
  297. data/gems/yard-0.9.25/lib/yard/i18n/text.rb +173 -0
  298. data/gems/yard-0.9.25/lib/yard/logging.rb +205 -0
  299. data/gems/yard-0.9.25/lib/yard/options.rb +217 -0
  300. data/gems/yard-0.9.25/lib/yard/parser/base.rb +57 -0
  301. data/gems/yard-0.9.25/lib/yard/parser/c/c_parser.rb +235 -0
  302. data/gems/yard-0.9.25/lib/yard/parser/c/comment_parser.rb +134 -0
  303. data/gems/yard-0.9.25/lib/yard/parser/c/statement.rb +66 -0
  304. data/gems/yard-0.9.25/lib/yard/parser/ruby/ast_node.rb +551 -0
  305. data/gems/yard-0.9.25/lib/yard/parser/ruby/legacy/irb/slex.rb +276 -0
  306. data/gems/yard-0.9.25/lib/yard/parser/ruby/legacy/ruby_lex.rb +1345 -0
  307. data/gems/yard-0.9.25/lib/yard/parser/ruby/legacy/ruby_parser.rb +32 -0
  308. data/gems/yard-0.9.25/lib/yard/parser/ruby/legacy/statement.rb +68 -0
  309. data/gems/yard-0.9.25/lib/yard/parser/ruby/legacy/statement_list.rb +394 -0
  310. data/gems/yard-0.9.25/lib/yard/parser/ruby/legacy/token_list.rb +74 -0
  311. data/gems/yard-0.9.25/lib/yard/parser/ruby/ruby_parser.rb +701 -0
  312. data/gems/yard-0.9.25/lib/yard/parser/ruby/token_resolver.rb +158 -0
  313. data/gems/yard-0.9.25/lib/yard/parser/source_parser.rb +526 -0
  314. data/gems/yard-0.9.25/lib/yard/rake/yardoc_task.rb +81 -0
  315. data/gems/yard-0.9.25/lib/yard/registry.rb +439 -0
  316. data/gems/yard-0.9.25/lib/yard/registry_resolver.rb +217 -0
  317. data/gems/yard-0.9.25/lib/yard/registry_store.rb +342 -0
  318. data/gems/yard-0.9.25/lib/yard/rubygems/backports/LICENSE.txt +57 -0
  319. data/gems/yard-0.9.25/lib/yard/rubygems/backports/MIT.txt +20 -0
  320. data/gems/yard-0.9.25/lib/yard/rubygems/backports/gem.rb +10 -0
  321. data/gems/yard-0.9.25/lib/yard/rubygems/backports/source_index.rb +365 -0
  322. data/gems/yard-0.9.25/lib/yard/rubygems/backports.rb +10 -0
  323. data/gems/yard-0.9.25/lib/yard/rubygems/doc_manager.rb +90 -0
  324. data/gems/yard-0.9.25/lib/yard/rubygems/hook.rb +197 -0
  325. data/gems/yard-0.9.25/lib/yard/rubygems/specification.rb +50 -0
  326. data/gems/yard-0.9.25/lib/yard/serializers/base.rb +83 -0
  327. data/gems/yard-0.9.25/lib/yard/serializers/file_system_serializer.rb +123 -0
  328. data/gems/yard-0.9.25/lib/yard/serializers/process_serializer.rb +24 -0
  329. data/gems/yard-0.9.25/lib/yard/serializers/stdout_serializer.rb +34 -0
  330. data/gems/yard-0.9.25/lib/yard/serializers/yardoc_serializer.rb +152 -0
  331. data/gems/yard-0.9.25/lib/yard/server/adapter.rb +100 -0
  332. data/gems/yard-0.9.25/lib/yard/server/commands/base.rb +209 -0
  333. data/gems/yard-0.9.25/lib/yard/server/commands/display_file_command.rb +29 -0
  334. data/gems/yard-0.9.25/lib/yard/server/commands/display_object_command.rb +65 -0
  335. data/gems/yard-0.9.25/lib/yard/server/commands/frames_command.rb +16 -0
  336. data/gems/yard-0.9.25/lib/yard/server/commands/library_command.rb +187 -0
  337. data/gems/yard-0.9.25/lib/yard/server/commands/library_index_command.rb +28 -0
  338. data/gems/yard-0.9.25/lib/yard/server/commands/list_command.rb +25 -0
  339. data/gems/yard-0.9.25/lib/yard/server/commands/root_request_command.rb +15 -0
  340. data/gems/yard-0.9.25/lib/yard/server/commands/search_command.rb +79 -0
  341. data/gems/yard-0.9.25/lib/yard/server/commands/static_file_command.rb +23 -0
  342. data/gems/yard-0.9.25/lib/yard/server/commands/static_file_helpers.rb +61 -0
  343. data/gems/yard-0.9.25/lib/yard/server/doc_server_helper.rb +91 -0
  344. data/gems/yard-0.9.25/lib/yard/server/doc_server_serializer.rb +39 -0
  345. data/gems/yard-0.9.25/lib/yard/server/library_version.rb +277 -0
  346. data/gems/yard-0.9.25/lib/yard/server/rack_adapter.rb +89 -0
  347. data/gems/yard-0.9.25/lib/yard/server/router.rb +187 -0
  348. data/gems/yard-0.9.25/lib/yard/server/static_caching.rb +46 -0
  349. data/gems/yard-0.9.25/lib/yard/server/templates/default/fulldoc/html/css/custom.css +127 -0
  350. data/gems/yard-0.9.25/lib/yard/server/templates/default/fulldoc/html/images/processing.gif +0 -0
  351. data/gems/yard-0.9.25/lib/yard/server/templates/default/fulldoc/html/js/autocomplete.js +12 -0
  352. data/gems/yard-0.9.25/lib/yard/server/templates/default/layout/html/breadcrumb.erb +37 -0
  353. data/gems/yard-0.9.25/lib/yard/server/templates/default/layout/html/script_setup.erb +7 -0
  354. data/gems/yard-0.9.25/lib/yard/server/templates/default/layout/html/setup.rb +8 -0
  355. data/gems/yard-0.9.25/lib/yard/server/templates/default/method_details/html/permalink.erb +4 -0
  356. data/gems/yard-0.9.25/lib/yard/server/templates/default/method_details/html/setup.rb +5 -0
  357. data/gems/yard-0.9.25/lib/yard/server/templates/doc_server/library_list/html/headers.erb +8 -0
  358. data/gems/yard-0.9.25/lib/yard/server/templates/doc_server/library_list/html/library_list.erb +14 -0
  359. data/gems/yard-0.9.25/lib/yard/server/templates/doc_server/library_list/html/listing.erb +13 -0
  360. data/gems/yard-0.9.25/lib/yard/server/templates/doc_server/library_list/html/setup.rb +6 -0
  361. data/gems/yard-0.9.25/lib/yard/server/templates/doc_server/library_list/html/title.erb +2 -0
  362. data/gems/yard-0.9.25/lib/yard/server/templates/doc_server/processing/html/processing.erb +52 -0
  363. data/gems/yard-0.9.25/lib/yard/server/templates/doc_server/processing/html/setup.rb +4 -0
  364. data/gems/yard-0.9.25/lib/yard/server/templates/doc_server/search/html/search.erb +18 -0
  365. data/gems/yard-0.9.25/lib/yard/server/templates/doc_server/search/html/setup.rb +9 -0
  366. data/gems/yard-0.9.25/lib/yard/server/webrick_adapter.rb +45 -0
  367. data/gems/yard-0.9.25/lib/yard/server.rb +13 -0
  368. data/gems/yard-0.9.25/lib/yard/tags/default_factory.rb +191 -0
  369. data/gems/yard-0.9.25/lib/yard/tags/default_tag.rb +13 -0
  370. data/gems/yard-0.9.25/lib/yard/tags/directives.rb +616 -0
  371. data/gems/yard-0.9.25/lib/yard/tags/library.rb +633 -0
  372. data/gems/yard-0.9.25/lib/yard/tags/option_tag.rb +13 -0
  373. data/gems/yard-0.9.25/lib/yard/tags/overload_tag.rb +71 -0
  374. data/gems/yard-0.9.25/lib/yard/tags/ref_tag.rb +8 -0
  375. data/gems/yard-0.9.25/lib/yard/tags/ref_tag_list.rb +28 -0
  376. data/gems/yard-0.9.25/lib/yard/tags/tag.rb +71 -0
  377. data/gems/yard-0.9.25/lib/yard/tags/tag_format_error.rb +7 -0
  378. data/gems/yard-0.9.25/lib/yard/tags/types_explainer.rb +162 -0
  379. data/gems/yard-0.9.25/lib/yard/templates/engine.rb +186 -0
  380. data/gems/yard-0.9.25/lib/yard/templates/erb_cache.rb +23 -0
  381. data/gems/yard-0.9.25/lib/yard/templates/helpers/base_helper.rb +215 -0
  382. data/gems/yard-0.9.25/lib/yard/templates/helpers/filter_helper.rb +27 -0
  383. data/gems/yard-0.9.25/lib/yard/templates/helpers/html_helper.rb +670 -0
  384. data/gems/yard-0.9.25/lib/yard/templates/helpers/html_syntax_highlight_helper.rb +78 -0
  385. data/gems/yard-0.9.25/lib/yard/templates/helpers/markup/rdoc_markdown.rb +23 -0
  386. data/gems/yard-0.9.25/lib/yard/templates/helpers/markup/rdoc_markup.rb +110 -0
  387. data/gems/yard-0.9.25/lib/yard/templates/helpers/markup_helper.rb +172 -0
  388. data/gems/yard-0.9.25/lib/yard/templates/helpers/method_helper.rb +75 -0
  389. data/gems/yard-0.9.25/lib/yard/templates/helpers/module_helper.rb +21 -0
  390. data/gems/yard-0.9.25/lib/yard/templates/helpers/text_helper.rb +112 -0
  391. data/gems/yard-0.9.25/lib/yard/templates/helpers/uml_helper.rb +47 -0
  392. data/gems/yard-0.9.25/lib/yard/templates/section.rb +105 -0
  393. data/gems/yard-0.9.25/lib/yard/templates/template.rb +418 -0
  394. data/gems/yard-0.9.25/lib/yard/templates/template_options.rb +92 -0
  395. data/gems/yard-0.9.25/lib/yard/verifier.rb +151 -0
  396. data/gems/yard-0.9.25/lib/yard/version.rb +6 -0
  397. data/gems/yard-0.9.25/lib/yard.rb +69 -0
  398. data/gems/yard-0.9.25/po/ja.po +31108 -0
  399. data/gems/yard-0.9.25/samus.json +80 -0
  400. data/gems/yard-0.9.25/tasks/update_error_map.rake +53 -0
  401. data/gems/yard-0.9.25/templates/default/class/dot/setup.rb +7 -0
  402. data/gems/yard-0.9.25/templates/default/class/dot/superklass.erb +3 -0
  403. data/gems/yard-0.9.25/templates/default/class/html/constructor_details.erb +8 -0
  404. data/gems/yard-0.9.25/templates/default/class/html/setup.rb +2 -0
  405. data/gems/yard-0.9.25/templates/default/class/html/subclasses.erb +4 -0
  406. data/gems/yard-0.9.25/templates/default/class/setup.rb +36 -0
  407. data/gems/yard-0.9.25/templates/default/class/text/setup.rb +12 -0
  408. data/gems/yard-0.9.25/templates/default/class/text/subclasses.erb +5 -0
  409. data/gems/yard-0.9.25/templates/default/constant/text/header.erb +11 -0
  410. data/gems/yard-0.9.25/templates/default/constant/text/setup.rb +4 -0
  411. data/gems/yard-0.9.25/templates/default/docstring/html/abstract.erb +4 -0
  412. data/gems/yard-0.9.25/templates/default/docstring/html/deprecated.erb +1 -0
  413. data/gems/yard-0.9.25/templates/default/docstring/html/index.erb +5 -0
  414. data/gems/yard-0.9.25/templates/default/docstring/html/note.erb +6 -0
  415. data/gems/yard-0.9.25/templates/default/docstring/html/private.erb +4 -0
  416. data/gems/yard-0.9.25/templates/default/docstring/html/returns_void.erb +1 -0
  417. data/gems/yard-0.9.25/templates/default/docstring/html/text.erb +1 -0
  418. data/gems/yard-0.9.25/templates/default/docstring/html/todo.erb +6 -0
  419. data/gems/yard-0.9.25/templates/default/docstring/setup.rb +52 -0
  420. data/gems/yard-0.9.25/templates/default/docstring/text/abstract.erb +2 -0
  421. data/gems/yard-0.9.25/templates/default/docstring/text/deprecated.erb +2 -0
  422. data/gems/yard-0.9.25/templates/default/docstring/text/index.erb +2 -0
  423. data/gems/yard-0.9.25/templates/default/docstring/text/note.erb +4 -0
  424. data/gems/yard-0.9.25/templates/default/docstring/text/private.erb +2 -0
  425. data/gems/yard-0.9.25/templates/default/docstring/text/returns_void.erb +1 -0
  426. data/gems/yard-0.9.25/templates/default/docstring/text/text.erb +1 -0
  427. data/gems/yard-0.9.25/templates/default/docstring/text/todo.erb +4 -0
  428. data/gems/yard-0.9.25/templates/default/fulldoc/html/css/common.css +1 -0
  429. data/gems/yard-0.9.25/templates/default/fulldoc/html/css/full_list.css +58 -0
  430. data/gems/yard-0.9.25/templates/default/fulldoc/html/css/style.css +496 -0
  431. data/gems/yard-0.9.25/templates/default/fulldoc/html/frames.erb +17 -0
  432. data/gems/yard-0.9.25/templates/default/fulldoc/html/full_list.erb +37 -0
  433. data/gems/yard-0.9.25/templates/default/fulldoc/html/full_list_class.erb +2 -0
  434. data/gems/yard-0.9.25/templates/default/fulldoc/html/full_list_file.erb +7 -0
  435. data/gems/yard-0.9.25/templates/default/fulldoc/html/full_list_method.erb +10 -0
  436. data/gems/yard-0.9.25/templates/default/fulldoc/html/js/app.js +314 -0
  437. data/gems/yard-0.9.25/templates/default/fulldoc/html/js/full_list.js +216 -0
  438. data/gems/yard-0.9.25/templates/default/fulldoc/html/js/jquery.js +4 -0
  439. data/gems/yard-0.9.25/templates/default/fulldoc/html/setup.rb +241 -0
  440. data/gems/yard-0.9.25/templates/default/layout/dot/header.erb +6 -0
  441. data/gems/yard-0.9.25/templates/default/layout/dot/setup.rb +15 -0
  442. data/gems/yard-0.9.25/templates/default/layout/html/breadcrumb.erb +11 -0
  443. data/gems/yard-0.9.25/templates/default/layout/html/files.erb +11 -0
  444. data/gems/yard-0.9.25/templates/default/layout/html/footer.erb +5 -0
  445. data/gems/yard-0.9.25/templates/default/layout/html/headers.erb +15 -0
  446. data/gems/yard-0.9.25/templates/default/layout/html/index.erb +2 -0
  447. data/gems/yard-0.9.25/templates/default/layout/html/layout.erb +24 -0
  448. data/gems/yard-0.9.25/templates/default/layout/html/listing.erb +4 -0
  449. data/gems/yard-0.9.25/templates/default/layout/html/objects.erb +32 -0
  450. data/gems/yard-0.9.25/templates/default/layout/html/script_setup.erb +4 -0
  451. data/gems/yard-0.9.25/templates/default/layout/html/search.erb +13 -0
  452. data/gems/yard-0.9.25/templates/default/layout/html/setup.rb +89 -0
  453. data/gems/yard-0.9.25/templates/default/method/html/header.erb +17 -0
  454. data/gems/yard-0.9.25/templates/default/method/setup.rb +4 -0
  455. data/gems/yard-0.9.25/templates/default/method/text/header.erb +1 -0
  456. data/gems/yard-0.9.25/templates/default/method_details/html/header.erb +3 -0
  457. data/gems/yard-0.9.25/templates/default/method_details/html/method_signature.erb +25 -0
  458. data/gems/yard-0.9.25/templates/default/method_details/html/source.erb +10 -0
  459. data/gems/yard-0.9.25/templates/default/method_details/setup.rb +11 -0
  460. data/gems/yard-0.9.25/templates/default/method_details/text/header.erb +10 -0
  461. data/gems/yard-0.9.25/templates/default/method_details/text/method_signature.erb +12 -0
  462. data/gems/yard-0.9.25/templates/default/method_details/text/setup.rb +11 -0
  463. data/gems/yard-0.9.25/templates/default/module/dot/child.erb +1 -0
  464. data/gems/yard-0.9.25/templates/default/module/dot/dependencies.erb +3 -0
  465. data/gems/yard-0.9.25/templates/default/module/dot/header.erb +6 -0
  466. data/gems/yard-0.9.25/templates/default/module/dot/info.erb +14 -0
  467. data/gems/yard-0.9.25/templates/default/module/dot/setup.rb +15 -0
  468. data/gems/yard-0.9.25/templates/default/module/html/attribute_details.erb +10 -0
  469. data/gems/yard-0.9.25/templates/default/module/html/attribute_summary.erb +8 -0
  470. data/gems/yard-0.9.25/templates/default/module/html/box_info.erb +43 -0
  471. data/gems/yard-0.9.25/templates/default/module/html/children.erb +8 -0
  472. data/gems/yard-0.9.25/templates/default/module/html/constant_summary.erb +17 -0
  473. data/gems/yard-0.9.25/templates/default/module/html/defines.erb +3 -0
  474. data/gems/yard-0.9.25/templates/default/module/html/header.erb +5 -0
  475. data/gems/yard-0.9.25/templates/default/module/html/inherited_attributes.erb +14 -0
  476. data/gems/yard-0.9.25/templates/default/module/html/inherited_constants.erb +8 -0
  477. data/gems/yard-0.9.25/templates/default/module/html/inherited_methods.erb +19 -0
  478. data/gems/yard-0.9.25/templates/default/module/html/item_summary.erb +40 -0
  479. data/gems/yard-0.9.25/templates/default/module/html/method_details_list.erb +9 -0
  480. data/gems/yard-0.9.25/templates/default/module/html/method_summary.erb +14 -0
  481. data/gems/yard-0.9.25/templates/default/module/html/methodmissing.erb +12 -0
  482. data/gems/yard-0.9.25/templates/default/module/html/pre_docstring.erb +1 -0
  483. data/gems/yard-0.9.25/templates/default/module/setup.rb +167 -0
  484. data/gems/yard-0.9.25/templates/default/module/text/children.erb +10 -0
  485. data/gems/yard-0.9.25/templates/default/module/text/class_meths_list.erb +8 -0
  486. data/gems/yard-0.9.25/templates/default/module/text/extends.erb +8 -0
  487. data/gems/yard-0.9.25/templates/default/module/text/header.erb +7 -0
  488. data/gems/yard-0.9.25/templates/default/module/text/includes.erb +8 -0
  489. data/gems/yard-0.9.25/templates/default/module/text/instance_meths_list.erb +8 -0
  490. data/gems/yard-0.9.25/templates/default/module/text/setup.rb +13 -0
  491. data/gems/yard-0.9.25/templates/default/onefile/html/files.erb +5 -0
  492. data/gems/yard-0.9.25/templates/default/onefile/html/headers.erb +6 -0
  493. data/gems/yard-0.9.25/templates/default/onefile/html/layout.erb +17 -0
  494. data/gems/yard-0.9.25/templates/default/onefile/html/readme.erb +3 -0
  495. data/gems/yard-0.9.25/templates/default/onefile/html/setup.rb +62 -0
  496. data/gems/yard-0.9.25/templates/default/root/dot/child.erb +3 -0
  497. data/gems/yard-0.9.25/templates/default/root/dot/setup.rb +6 -0
  498. data/gems/yard-0.9.25/templates/default/root/html/setup.rb +2 -0
  499. data/gems/yard-0.9.25/templates/default/tags/html/example.erb +11 -0
  500. data/gems/yard-0.9.25/templates/default/tags/html/index.erb +3 -0
  501. data/gems/yard-0.9.25/templates/default/tags/html/option.erb +24 -0
  502. data/gems/yard-0.9.25/templates/default/tags/html/overload.erb +14 -0
  503. data/gems/yard-0.9.25/templates/default/tags/html/see.erb +8 -0
  504. data/gems/yard-0.9.25/templates/default/tags/html/tag.erb +20 -0
  505. data/gems/yard-0.9.25/templates/default/tags/setup.rb +57 -0
  506. data/gems/yard-0.9.25/templates/default/tags/text/example.erb +12 -0
  507. data/gems/yard-0.9.25/templates/default/tags/text/index.erb +1 -0
  508. data/gems/yard-0.9.25/templates/default/tags/text/option.erb +20 -0
  509. data/gems/yard-0.9.25/templates/default/tags/text/overload.erb +19 -0
  510. data/gems/yard-0.9.25/templates/default/tags/text/see.erb +11 -0
  511. data/gems/yard-0.9.25/templates/default/tags/text/tag.erb +13 -0
  512. data/gems/yard-0.9.25/templates/guide/class/html/setup.rb +2 -0
  513. data/gems/yard-0.9.25/templates/guide/docstring/html/setup.rb +2 -0
  514. data/gems/yard-0.9.25/templates/guide/fulldoc/html/css/style.css +108 -0
  515. data/gems/yard-0.9.25/templates/guide/fulldoc/html/js/app.js +33 -0
  516. data/gems/yard-0.9.25/templates/guide/fulldoc/html/setup.rb +74 -0
  517. data/gems/yard-0.9.25/templates/guide/layout/html/layout.erb +81 -0
  518. data/gems/yard-0.9.25/templates/guide/layout/html/setup.rb +25 -0
  519. data/gems/yard-0.9.25/templates/guide/method/html/header.erb +18 -0
  520. data/gems/yard-0.9.25/templates/guide/method/html/setup.rb +22 -0
  521. data/gems/yard-0.9.25/templates/guide/module/html/header.erb +7 -0
  522. data/gems/yard-0.9.25/templates/guide/module/html/method_list.erb +5 -0
  523. data/gems/yard-0.9.25/templates/guide/module/html/setup.rb +27 -0
  524. data/gems/yard-0.9.25/templates/guide/onefile/html/files.erb +4 -0
  525. data/gems/yard-0.9.25/templates/guide/onefile/html/setup.rb +6 -0
  526. data/gems/yard-0.9.25/templates/guide/onefile/html/toc.erb +3 -0
  527. data/gems/yard-0.9.25/templates/guide/tags/html/setup.rb +9 -0
  528. data/gems/yard-0.9.25/yard.gemspec +24 -0
  529. data/kinetic_sdk.gemspec +0 -4
  530. data/lib/kinetic_sdk/core/lib/form.rb +55 -0
  531. data/lib/kinetic_sdk/core/lib/kapp.rb +52 -0
  532. data/lib/kinetic_sdk/core/lib/space.rb +51 -0
  533. data/lib/kinetic_sdk/task/lib/export.rb +22 -2
  534. data/lib/kinetic_sdk/task/lib/trees.rb +11 -0
  535. data/lib/kinetic_sdk/version.rb +1 -1
  536. data/lib/kinetic_sdk.rb +2 -22
  537. metadata +534 -225
  538. data/gems/kontena-websocket-client-0.1.1/Gemfile +0 -4
  539. data/gems/kontena-websocket-client-0.1.1/LICENSE +0 -190
  540. data/gems/kontena-websocket-client-0.1.1/README.md +0 -138
  541. data/gems/kontena-websocket-client-0.1.1/Rakefile +0 -6
  542. data/gems/kontena-websocket-client-0.1.1/benchmark/benchmark-client.rb +0 -45
  543. data/gems/kontena-websocket-client-0.1.1/benchmark/benchmark-em.rb +0 -66
  544. data/gems/kontena-websocket-client-0.1.1/benchmark/benchmark.rb +0 -161
  545. data/gems/kontena-websocket-client-0.1.1/benchmark/benchmark.sh +0 -17
  546. data/gems/kontena-websocket-client-0.1.1/benchmark/websocket-echo-server.go +0 -207
  547. data/gems/kontena-websocket-client-0.1.1/examples/websocket-echo-client.rb +0 -80
  548. data/gems/kontena-websocket-client-0.1.1/kontena-websocket-client.gemspec +0 -24
  549. data/gems/kontena-websocket-client-0.1.1/lib/kontena/websocket/client/connection.rb +0 -119
  550. data/gems/kontena-websocket-client-0.1.1/lib/kontena/websocket/client/version.rb +0 -13
  551. data/gems/kontena-websocket-client-0.1.1/lib/kontena/websocket/client.rb +0 -848
  552. data/gems/kontena-websocket-client-0.1.1/lib/kontena/websocket/error.rb +0 -81
  553. data/gems/kontena-websocket-client-0.1.1/lib/kontena/websocket/logging.rb +0 -55
  554. data/gems/kontena-websocket-client-0.1.1/lib/kontena/websocket/openssl_patch.rb +0 -10
  555. data/gems/kontena-websocket-client-0.1.1/lib/kontena-websocket-client.rb +0 -15
  556. data/gems/mime-types-3.3.1/Contributing.md +0 -143
  557. data/gems/mime-types-3.3.1/History.md +0 -240
  558. data/gems/mime-types-3.3.1/Rakefile +0 -284
  559. data/gems/mime-types-3.3.1/test/minitest_helper.rb +0 -13
  560. data/gems/mime-types-3.3.1/test/test_mime_type.rb +0 -610
  561. data/gems/mime-types-3.3.1/test/test_mime_types.rb +0 -169
  562. data/gems/mime-types-3.3.1/test/test_mime_types_cache.rb +0 -118
  563. data/gems/mime-types-3.3.1/test/test_mime_types_class.rb +0 -159
  564. data/gems/mime-types-3.3.1/test/test_mime_types_lazy.rb +0 -49
  565. data/gems/mime-types-3.3.1/test/test_mime_types_loader.rb +0 -32
  566. data/gems/mime-types-data-3.2021.0225/Licence.md +0 -25
  567. data/gems/mime-types-data-3.2021.0225/Rakefile +0 -159
  568. data/gems/mime-types-data-3.2021.0225/data/mime-types.json +0 -1
  569. data/gems/mime-types-data-3.2021.0225/data/mime.flags.column +0 -2315
  570. data/gems/parallel-1.12.1/lib/parallel/processor_count.rb +0 -93
  571. data/gems/parallel-1.12.1/lib/parallel/version.rb +0 -3
  572. data/gems/parallel-1.12.1/lib/parallel.rb +0 -500
  573. data/gems/ruby-progressbar-1.9.0/LICENSE.txt +0 -19
  574. data/gems/ruby-progressbar-1.9.0/README.md +0 -38
  575. data/gems/ruby-progressbar-1.9.0/Rakefile +0 -2
  576. data/gems/ruby-progressbar-1.9.0/lib/ruby-progressbar/base.rb +0 -183
  577. data/gems/ruby-progressbar-1.9.0/lib/ruby-progressbar/calculators/length.rb +0 -99
  578. data/gems/ruby-progressbar-1.9.0/lib/ruby-progressbar/calculators/running_average.rb +0 -9
  579. data/gems/ruby-progressbar-1.9.0/lib/ruby-progressbar/components/bar.rb +0 -96
  580. data/gems/ruby-progressbar-1.9.0/lib/ruby-progressbar/components/percentage.rb +0 -29
  581. data/gems/ruby-progressbar-1.9.0/lib/ruby-progressbar/components/rate.rb +0 -43
  582. data/gems/ruby-progressbar-1.9.0/lib/ruby-progressbar/components/time.rb +0 -107
  583. data/gems/ruby-progressbar-1.9.0/lib/ruby-progressbar/components/title.rb +0 -13
  584. data/gems/ruby-progressbar-1.9.0/lib/ruby-progressbar/components.rb +0 -5
  585. data/gems/ruby-progressbar-1.9.0/lib/ruby-progressbar/errors/invalid_progress_error.rb +0 -4
  586. data/gems/ruby-progressbar-1.9.0/lib/ruby-progressbar/format/formatter.rb +0 -27
  587. data/gems/ruby-progressbar-1.9.0/lib/ruby-progressbar/format/molecule.rb +0 -59
  588. data/gems/ruby-progressbar-1.9.0/lib/ruby-progressbar/format/string.rb +0 -36
  589. data/gems/ruby-progressbar-1.9.0/lib/ruby-progressbar/format.rb +0 -3
  590. data/gems/ruby-progressbar-1.9.0/lib/ruby-progressbar/output.rb +0 -68
  591. data/gems/ruby-progressbar-1.9.0/lib/ruby-progressbar/outputs/non_tty.rb +0 -47
  592. data/gems/ruby-progressbar-1.9.0/lib/ruby-progressbar/outputs/null.rb +0 -33
  593. data/gems/ruby-progressbar-1.9.0/lib/ruby-progressbar/outputs/tty.rb +0 -32
  594. data/gems/ruby-progressbar-1.9.0/lib/ruby-progressbar/progress.rb +0 -118
  595. data/gems/ruby-progressbar-1.9.0/lib/ruby-progressbar/refinements/enumerator.rb +0 -25
  596. data/gems/ruby-progressbar-1.9.0/lib/ruby-progressbar/refinements.rb +0 -1
  597. data/gems/ruby-progressbar-1.9.0/lib/ruby-progressbar/throttle.rb +0 -25
  598. data/gems/ruby-progressbar-1.9.0/lib/ruby-progressbar/time.rb +0 -30
  599. data/gems/ruby-progressbar-1.9.0/lib/ruby-progressbar/timer.rb +0 -72
  600. data/gems/ruby-progressbar-1.9.0/lib/ruby-progressbar/version.rb +0 -3
  601. data/gems/ruby-progressbar-1.9.0/lib/ruby-progressbar.rb +0 -18
  602. data/gems/websocket-driver-0.6.5/CHANGELOG.md +0 -123
  603. data/gems/websocket-driver-0.6.5/LICENSE.md +0 -22
  604. data/gems/websocket-driver-0.6.5/README.md +0 -369
  605. data/gems/websocket-driver-0.6.5/examples/tcp_server.rb +0 -28
  606. data/gems/websocket-driver-0.6.5/ext/websocket-driver/Makefile +0 -264
  607. data/gems/websocket-driver-0.6.5/ext/websocket-driver/WebsocketMaskService.java +0 -55
  608. data/gems/websocket-driver-0.6.5/ext/websocket-driver/extconf.rb +0 -4
  609. data/gems/websocket-driver-0.6.5/ext/websocket-driver/websocket_mask.bundle +0 -0
  610. data/gems/websocket-driver-0.6.5/ext/websocket-driver/websocket_mask.c +0 -41
  611. data/gems/websocket-driver-0.6.5/ext/websocket-driver/websocket_mask.o +0 -0
  612. data/gems/websocket-driver-0.6.5/lib/websocket/driver/client.rb +0 -140
  613. data/gems/websocket-driver-0.6.5/lib/websocket/driver/draft75.rb +0 -102
  614. data/gems/websocket-driver-0.6.5/lib/websocket/driver/draft76.rb +0 -96
  615. data/gems/websocket-driver-0.6.5/lib/websocket/driver/event_emitter.rb +0 -54
  616. data/gems/websocket-driver-0.6.5/lib/websocket/driver/headers.rb +0 -45
  617. data/gems/websocket-driver-0.6.5/lib/websocket/driver/hybi/frame.rb +0 -20
  618. data/gems/websocket-driver-0.6.5/lib/websocket/driver/hybi/message.rb +0 -31
  619. data/gems/websocket-driver-0.6.5/lib/websocket/driver/hybi.rb +0 -406
  620. data/gems/websocket-driver-0.6.5/lib/websocket/driver/proxy.rb +0 -68
  621. data/gems/websocket-driver-0.6.5/lib/websocket/driver/server.rb +0 -80
  622. data/gems/websocket-driver-0.6.5/lib/websocket/driver/stream_reader.rb +0 -55
  623. data/gems/websocket-driver-0.6.5/lib/websocket/driver.rb +0 -199
  624. data/gems/websocket-driver-0.6.5/lib/websocket/http/headers.rb +0 -112
  625. data/gems/websocket-driver-0.6.5/lib/websocket/http/request.rb +0 -45
  626. data/gems/websocket-driver-0.6.5/lib/websocket/http/response.rb +0 -29
  627. data/gems/websocket-driver-0.6.5/lib/websocket/http.rb +0 -15
  628. data/gems/websocket-driver-0.6.5/lib/websocket/mask.rb +0 -14
  629. data/gems/websocket-driver-0.6.5/lib/websocket/websocket_mask.rb +0 -2
  630. data/gems/websocket-driver-0.6.5/lib/websocket_mask.bundle +0 -0
  631. data/gems/websocket-driver-0.6.5-java/CHANGELOG.md +0 -123
  632. data/gems/websocket-driver-0.6.5-java/README.md +0 -369
  633. data/gems/websocket-driver-0.6.5-java/examples/tcp_server.rb +0 -28
  634. data/gems/websocket-driver-0.6.5-java/ext/websocket-driver/WebsocketMaskService.java +0 -55
  635. data/gems/websocket-driver-0.6.5-java/ext/websocket-driver/extconf.rb +0 -4
  636. data/gems/websocket-driver-0.6.5-java/ext/websocket-driver/websocket_mask.c +0 -41
  637. data/gems/websocket-driver-0.6.5-java/lib/websocket/driver/client.rb +0 -140
  638. data/gems/websocket-driver-0.6.5-java/lib/websocket/driver/draft75.rb +0 -102
  639. data/gems/websocket-driver-0.6.5-java/lib/websocket/driver/draft76.rb +0 -96
  640. data/gems/websocket-driver-0.6.5-java/lib/websocket/driver/event_emitter.rb +0 -54
  641. data/gems/websocket-driver-0.6.5-java/lib/websocket/driver/headers.rb +0 -45
  642. data/gems/websocket-driver-0.6.5-java/lib/websocket/driver/hybi/frame.rb +0 -20
  643. data/gems/websocket-driver-0.6.5-java/lib/websocket/driver/hybi/message.rb +0 -31
  644. data/gems/websocket-driver-0.6.5-java/lib/websocket/driver/hybi.rb +0 -406
  645. data/gems/websocket-driver-0.6.5-java/lib/websocket/driver/proxy.rb +0 -68
  646. data/gems/websocket-driver-0.6.5-java/lib/websocket/driver/server.rb +0 -80
  647. data/gems/websocket-driver-0.6.5-java/lib/websocket/driver/stream_reader.rb +0 -55
  648. data/gems/websocket-driver-0.6.5-java/lib/websocket/driver.rb +0 -199
  649. data/gems/websocket-driver-0.6.5-java/lib/websocket/http/headers.rb +0 -112
  650. data/gems/websocket-driver-0.6.5-java/lib/websocket/http/request.rb +0 -45
  651. data/gems/websocket-driver-0.6.5-java/lib/websocket/http/response.rb +0 -29
  652. data/gems/websocket-driver-0.6.5-java/lib/websocket/http.rb +0 -15
  653. data/gems/websocket-driver-0.6.5-java/lib/websocket/mask.rb +0 -14
  654. data/gems/websocket-driver-0.6.5-java/lib/websocket/websocket_mask.rb +0 -2
  655. data/gems/websocket-driver-0.6.5-java/lib/websocket_mask.jar +0 -0
  656. data/gems/websocket-extensions-0.1.3/CHANGELOG.md +0 -15
  657. data/gems/websocket-extensions-0.1.3/LICENSE.md +0 -20
  658. data/gems/websocket-extensions-0.1.3/README.md +0 -313
  659. data/gems/websocket-extensions-0.1.3/lib/websocket/extensions/parser.rb +0 -111
  660. data/gems/websocket-extensions-0.1.3/lib/websocket/extensions.rb +0 -181
  661. data/lib/kinetic_sdk/discussions/lib/websockets.rb +0 -96
@@ -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