kinetic_sdk 5.0.18 → 5.0.20

Sign up to get free protection for your applications and to get access to all the features.
Files changed (667) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +15 -1
  3. data/README.md +1 -1
  4. data/gems/{mime-types-3.1/Code-of-Conduct.rdoc → mime-types-3.4.1/Code-of-Conduct.md} +29 -30
  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.1/Licence.rdoc → mime-types-3.4.1/Licence.md} +3 -3
  8. data/gems/{mime-types-3.1 → mime-types-3.4.1}/Manifest.txt +4 -4
  9. data/gems/{mime-types-3.1 → mime-types-3.4.1}/README.rdoc +6 -14
  10. data/gems/mime-types-3.4.1/Rakefile +270 -0
  11. data/gems/{mime-types-3.1 → mime-types-3.4.1}/lib/mime/type/columnar.rb +6 -4
  12. data/gems/{mime-types-3.1 → mime-types-3.4.1}/lib/mime/type.rb +162 -101
  13. data/gems/{mime-types-3.1 → mime-types-3.4.1}/lib/mime/types/_columnar.rb +22 -20
  14. data/gems/{mime-types-3.1 → mime-types-3.4.1}/lib/mime/types/cache.rb +13 -11
  15. data/gems/mime-types-3.4.1/lib/mime/types/columnar.rb +3 -0
  16. data/gems/mime-types-3.4.1/lib/mime/types/container.rb +96 -0
  17. data/gems/{mime-types-3.1 → mime-types-3.4.1}/lib/mime/types/deprecations.rb +17 -13
  18. data/gems/{mime-types-3.1 → mime-types-3.4.1}/lib/mime/types/full.rb +4 -2
  19. data/gems/{mime-types-3.1 → mime-types-3.4.1}/lib/mime/types/loader.rb +29 -18
  20. data/gems/{mime-types-3.1 → mime-types-3.4.1}/lib/mime/types/logger.rb +5 -5
  21. data/gems/{mime-types-3.1 → mime-types-3.4.1}/lib/mime/types/registry.rb +14 -5
  22. data/gems/{mime-types-3.1 → mime-types-3.4.1}/lib/mime/types.rb +26 -21
  23. data/gems/mime-types-3.4.1/lib/mime-types.rb +3 -0
  24. data/gems/{mime-types-3.1 → mime-types-3.4.1}/test/bad-fixtures/malformed +0 -0
  25. data/gems/{mime-types-3.1 → mime-types-3.4.1}/test/fixture/json.json +0 -0
  26. data/gems/{mime-types-3.1 → mime-types-3.4.1}/test/fixture/old-data +0 -0
  27. data/gems/{mime-types-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.2016.0521 → mime-types-data-3.2022.0105}/Code-of-Conduct.md +22 -22
  36. data/gems/mime-types-data-3.2022.0105/Contributing.md +241 -0
  37. data/gems/mime-types-data-3.2022.0105/History.md +502 -0
  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.2016.0521 → mime-types-data-3.2022.0105}/Manifest.txt +16 -0
  40. data/gems/mime-types-data-3.2022.0105/README.md +73 -0
  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.2016.0521 → mime-types-data-3.2022.0105}/data/mime.content_type.column +432 -13
  46. data/gems/{mime-types-data-3.2016.0521 → mime-types-data-3.2022.0105}/data/mime.docs.column +419 -0
  47. data/gems/{mime-types-data-3.2016.0521 → mime-types-data-3.2022.0105}/data/mime.encoding.column +419 -0
  48. data/gems/mime-types-data-3.2022.0105/data/mime.flags.column +2383 -0
  49. data/gems/{mime-types-data-3.2016.0521 → mime-types-data-3.2022.0105}/data/mime.friendly.column +419 -0
  50. data/gems/{mime-types-data-3.2016.0521 → mime-types-data-3.2022.0105}/data/mime.pext.column +419 -0
  51. data/gems/{mime-types-data-3.2016.0521 → mime-types-data-3.2022.0105}/data/mime.use_instead.column +420 -1
  52. data/gems/{mime-types-data-3.2016.0521 → mime-types-data-3.2022.0105}/data/mime.xrefs.column +567 -148
  53. data/gems/{mime-types-data-3.2016.0521 → mime-types-data-3.2022.0105}/lib/mime/types/data.rb +2 -2
  54. data/gems/{mime-types-data-3.2016.0521 → mime-types-data-3.2022.0105}/lib/mime-types-data.rb +1 -1
  55. data/gems/mime-types-data-3.2022.0105/types/application.yaml +17299 -0
  56. data/gems/mime-types-data-3.2022.0105/types/audio.yaml +1716 -0
  57. data/gems/mime-types-data-3.2022.0105/types/chemical.yaml +71 -0
  58. data/gems/mime-types-data-3.2022.0105/types/conference.yaml +9 -0
  59. data/gems/mime-types-data-3.2022.0105/types/drawing.yaml +15 -0
  60. data/gems/mime-types-data-3.2022.0105/types/font.yaml +65 -0
  61. data/gems/mime-types-data-3.2022.0105/types/image.yaml +1252 -0
  62. data/gems/mime-types-data-3.2022.0105/types/message.yaml +205 -0
  63. data/gems/mime-types-data-3.2022.0105/types/model.yaml +390 -0
  64. data/gems/mime-types-data-3.2022.0105/types/multipart.yaml +179 -0
  65. data/gems/mime-types-data-3.2022.0105/types/provisional-standard-types.yaml +145 -0
  66. data/gems/mime-types-data-3.2022.0105/types/text.yaml +1166 -0
  67. data/gems/mime-types-data-3.2022.0105/types/video.yaml +1121 -0
  68. data/gems/mime-types-data-3.2022.0105/types/world.yaml +8 -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 +3 -7
  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 +551 -229
  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.1/Contributing.rdoc +0 -130
  557. data/gems/mime-types-3.1/History.rdoc +0 -658
  558. data/gems/mime-types-3.1/Rakefile +0 -254
  559. data/gems/mime-types-3.1/lib/mime/types/columnar.rb +0 -1
  560. data/gems/mime-types-3.1/lib/mime/types/container.rb +0 -30
  561. data/gems/mime-types-3.1/lib/mime-types.rb +0 -1
  562. data/gems/mime-types-3.1/test/minitest_helper.rb +0 -13
  563. data/gems/mime-types-3.1/test/test_mime_type.rb +0 -603
  564. data/gems/mime-types-3.1/test/test_mime_types.rb +0 -161
  565. data/gems/mime-types-3.1/test/test_mime_types_cache.rb +0 -109
  566. data/gems/mime-types-3.1/test/test_mime_types_class.rb +0 -155
  567. data/gems/mime-types-3.1/test/test_mime_types_lazy.rb +0 -43
  568. data/gems/mime-types-3.1/test/test_mime_types_loader.rb +0 -32
  569. data/gems/mime-types-data-3.2016.0521/Contributing.md +0 -157
  570. data/gems/mime-types-data-3.2016.0521/History.md +0 -351
  571. data/gems/mime-types-data-3.2016.0521/Licence.md +0 -25
  572. data/gems/mime-types-data-3.2016.0521/README.md +0 -61
  573. data/gems/mime-types-data-3.2016.0521/Rakefile +0 -80
  574. data/gems/mime-types-data-3.2016.0521/data/mime-types.json +0 -1
  575. data/gems/mime-types-data-3.2016.0521/data/mime.flags.column +0 -1964
  576. data/gems/parallel-1.12.1/lib/parallel/processor_count.rb +0 -93
  577. data/gems/parallel-1.12.1/lib/parallel/version.rb +0 -3
  578. data/gems/parallel-1.12.1/lib/parallel.rb +0 -500
  579. data/gems/ruby-progressbar-1.9.0/LICENSE.txt +0 -19
  580. data/gems/ruby-progressbar-1.9.0/README.md +0 -38
  581. data/gems/ruby-progressbar-1.9.0/Rakefile +0 -2
  582. data/gems/ruby-progressbar-1.9.0/lib/ruby-progressbar/base.rb +0 -183
  583. data/gems/ruby-progressbar-1.9.0/lib/ruby-progressbar/calculators/length.rb +0 -99
  584. data/gems/ruby-progressbar-1.9.0/lib/ruby-progressbar/calculators/running_average.rb +0 -9
  585. data/gems/ruby-progressbar-1.9.0/lib/ruby-progressbar/components/bar.rb +0 -96
  586. data/gems/ruby-progressbar-1.9.0/lib/ruby-progressbar/components/percentage.rb +0 -29
  587. data/gems/ruby-progressbar-1.9.0/lib/ruby-progressbar/components/rate.rb +0 -43
  588. data/gems/ruby-progressbar-1.9.0/lib/ruby-progressbar/components/time.rb +0 -107
  589. data/gems/ruby-progressbar-1.9.0/lib/ruby-progressbar/components/title.rb +0 -13
  590. data/gems/ruby-progressbar-1.9.0/lib/ruby-progressbar/components.rb +0 -5
  591. data/gems/ruby-progressbar-1.9.0/lib/ruby-progressbar/errors/invalid_progress_error.rb +0 -4
  592. data/gems/ruby-progressbar-1.9.0/lib/ruby-progressbar/format/formatter.rb +0 -27
  593. data/gems/ruby-progressbar-1.9.0/lib/ruby-progressbar/format/molecule.rb +0 -59
  594. data/gems/ruby-progressbar-1.9.0/lib/ruby-progressbar/format/string.rb +0 -36
  595. data/gems/ruby-progressbar-1.9.0/lib/ruby-progressbar/format.rb +0 -3
  596. data/gems/ruby-progressbar-1.9.0/lib/ruby-progressbar/output.rb +0 -68
  597. data/gems/ruby-progressbar-1.9.0/lib/ruby-progressbar/outputs/non_tty.rb +0 -47
  598. data/gems/ruby-progressbar-1.9.0/lib/ruby-progressbar/outputs/null.rb +0 -33
  599. data/gems/ruby-progressbar-1.9.0/lib/ruby-progressbar/outputs/tty.rb +0 -32
  600. data/gems/ruby-progressbar-1.9.0/lib/ruby-progressbar/progress.rb +0 -118
  601. data/gems/ruby-progressbar-1.9.0/lib/ruby-progressbar/refinements/enumerator.rb +0 -25
  602. data/gems/ruby-progressbar-1.9.0/lib/ruby-progressbar/refinements.rb +0 -1
  603. data/gems/ruby-progressbar-1.9.0/lib/ruby-progressbar/throttle.rb +0 -25
  604. data/gems/ruby-progressbar-1.9.0/lib/ruby-progressbar/time.rb +0 -30
  605. data/gems/ruby-progressbar-1.9.0/lib/ruby-progressbar/timer.rb +0 -72
  606. data/gems/ruby-progressbar-1.9.0/lib/ruby-progressbar/version.rb +0 -3
  607. data/gems/ruby-progressbar-1.9.0/lib/ruby-progressbar.rb +0 -18
  608. data/gems/websocket-driver-0.6.5/CHANGELOG.md +0 -123
  609. data/gems/websocket-driver-0.6.5/LICENSE.md +0 -22
  610. data/gems/websocket-driver-0.6.5/README.md +0 -369
  611. data/gems/websocket-driver-0.6.5/examples/tcp_server.rb +0 -28
  612. data/gems/websocket-driver-0.6.5/ext/websocket-driver/Makefile +0 -264
  613. data/gems/websocket-driver-0.6.5/ext/websocket-driver/WebsocketMaskService.java +0 -55
  614. data/gems/websocket-driver-0.6.5/ext/websocket-driver/extconf.rb +0 -4
  615. data/gems/websocket-driver-0.6.5/ext/websocket-driver/websocket_mask.bundle +0 -0
  616. data/gems/websocket-driver-0.6.5/ext/websocket-driver/websocket_mask.c +0 -41
  617. data/gems/websocket-driver-0.6.5/ext/websocket-driver/websocket_mask.o +0 -0
  618. data/gems/websocket-driver-0.6.5/lib/websocket/driver/client.rb +0 -140
  619. data/gems/websocket-driver-0.6.5/lib/websocket/driver/draft75.rb +0 -102
  620. data/gems/websocket-driver-0.6.5/lib/websocket/driver/draft76.rb +0 -96
  621. data/gems/websocket-driver-0.6.5/lib/websocket/driver/event_emitter.rb +0 -54
  622. data/gems/websocket-driver-0.6.5/lib/websocket/driver/headers.rb +0 -45
  623. data/gems/websocket-driver-0.6.5/lib/websocket/driver/hybi/frame.rb +0 -20
  624. data/gems/websocket-driver-0.6.5/lib/websocket/driver/hybi/message.rb +0 -31
  625. data/gems/websocket-driver-0.6.5/lib/websocket/driver/hybi.rb +0 -406
  626. data/gems/websocket-driver-0.6.5/lib/websocket/driver/proxy.rb +0 -68
  627. data/gems/websocket-driver-0.6.5/lib/websocket/driver/server.rb +0 -80
  628. data/gems/websocket-driver-0.6.5/lib/websocket/driver/stream_reader.rb +0 -55
  629. data/gems/websocket-driver-0.6.5/lib/websocket/driver.rb +0 -199
  630. data/gems/websocket-driver-0.6.5/lib/websocket/http/headers.rb +0 -112
  631. data/gems/websocket-driver-0.6.5/lib/websocket/http/request.rb +0 -45
  632. data/gems/websocket-driver-0.6.5/lib/websocket/http/response.rb +0 -29
  633. data/gems/websocket-driver-0.6.5/lib/websocket/http.rb +0 -15
  634. data/gems/websocket-driver-0.6.5/lib/websocket/mask.rb +0 -14
  635. data/gems/websocket-driver-0.6.5/lib/websocket/websocket_mask.rb +0 -2
  636. data/gems/websocket-driver-0.6.5/lib/websocket_mask.bundle +0 -0
  637. data/gems/websocket-driver-0.6.5-java/CHANGELOG.md +0 -123
  638. data/gems/websocket-driver-0.6.5-java/README.md +0 -369
  639. data/gems/websocket-driver-0.6.5-java/examples/tcp_server.rb +0 -28
  640. data/gems/websocket-driver-0.6.5-java/ext/websocket-driver/WebsocketMaskService.java +0 -55
  641. data/gems/websocket-driver-0.6.5-java/ext/websocket-driver/extconf.rb +0 -4
  642. data/gems/websocket-driver-0.6.5-java/ext/websocket-driver/websocket_mask.c +0 -41
  643. data/gems/websocket-driver-0.6.5-java/lib/websocket/driver/client.rb +0 -140
  644. data/gems/websocket-driver-0.6.5-java/lib/websocket/driver/draft75.rb +0 -102
  645. data/gems/websocket-driver-0.6.5-java/lib/websocket/driver/draft76.rb +0 -96
  646. data/gems/websocket-driver-0.6.5-java/lib/websocket/driver/event_emitter.rb +0 -54
  647. data/gems/websocket-driver-0.6.5-java/lib/websocket/driver/headers.rb +0 -45
  648. data/gems/websocket-driver-0.6.5-java/lib/websocket/driver/hybi/frame.rb +0 -20
  649. data/gems/websocket-driver-0.6.5-java/lib/websocket/driver/hybi/message.rb +0 -31
  650. data/gems/websocket-driver-0.6.5-java/lib/websocket/driver/hybi.rb +0 -406
  651. data/gems/websocket-driver-0.6.5-java/lib/websocket/driver/proxy.rb +0 -68
  652. data/gems/websocket-driver-0.6.5-java/lib/websocket/driver/server.rb +0 -80
  653. data/gems/websocket-driver-0.6.5-java/lib/websocket/driver/stream_reader.rb +0 -55
  654. data/gems/websocket-driver-0.6.5-java/lib/websocket/driver.rb +0 -199
  655. data/gems/websocket-driver-0.6.5-java/lib/websocket/http/headers.rb +0 -112
  656. data/gems/websocket-driver-0.6.5-java/lib/websocket/http/request.rb +0 -45
  657. data/gems/websocket-driver-0.6.5-java/lib/websocket/http/response.rb +0 -29
  658. data/gems/websocket-driver-0.6.5-java/lib/websocket/http.rb +0 -15
  659. data/gems/websocket-driver-0.6.5-java/lib/websocket/mask.rb +0 -14
  660. data/gems/websocket-driver-0.6.5-java/lib/websocket/websocket_mask.rb +0 -2
  661. data/gems/websocket-driver-0.6.5-java/lib/websocket_mask.jar +0 -0
  662. data/gems/websocket-extensions-0.1.3/CHANGELOG.md +0 -15
  663. data/gems/websocket-extensions-0.1.3/LICENSE.md +0 -20
  664. data/gems/websocket-extensions-0.1.3/README.md +0 -313
  665. data/gems/websocket-extensions-0.1.3/lib/websocket/extensions/parser.rb +0 -111
  666. data/gems/websocket-extensions-0.1.3/lib/websocket/extensions.rb +0 -181
  667. data/lib/kinetic_sdk/discussions/lib/websockets.rb +0 -96
@@ -0,0 +1,804 @@
1
+ # master
2
+
3
+ # 0.9.25 - May 3rd, 2020
4
+
5
+ [0.9.25]: https://github.com/lsegal/yard/compare/v0.9.24...v0.9.25
6
+
7
+ - Fix parsing issue with conditional blocks mixed with conditional modifiers.
8
+ (#1308, #1324, #1326, #1327)
9
+ - Add table of contents IDs to redcarpet generated markdown. (#1323)
10
+ - Backport fixes for Ruby 1.9 (#1320)
11
+ - Fix parsing of checksums in yard server (#1301)
12
+ - Map Ruby C variable error names to Ruby classes (#1270, #1275)
13
+ - Fix initialization of RDocMarkup across threads (#1318)
14
+ - Remove warning for Kernel#open (#1312)
15
+ - Omit spec files in gem package (#1307)
16
+ - README updates (#1322)
17
+
18
+ # 0.9.24 - January 8th, 2020
19
+
20
+ [0.9.24]: https://github.com/lsegal/yard/compare/v0.9.23...v0.9.24
21
+
22
+ - Add {YARD::CodeObjects::NamespaceMapper.on_invalidate} callback when separator
23
+ cache is changed.
24
+ - Fix issue where Registry fails to resolve first-time lookups on instance methods.
25
+
26
+ # 0.9.23 - January 5th, 2020
27
+
28
+ [0.9.23]: https://github.com/lsegal/yard/compare/v0.9.22...v0.9.23
29
+
30
+ - Fix issues with double encoded code blocks when highlighted from an extra
31
+ file.
32
+
33
+ # 0.9.22 - December 31st, 2019
34
+
35
+ [0.9.22]: https://github.com/lsegal/yard/compare/v0.9.21...v0.9.22
36
+
37
+ - Revert jquery update in last release since it requires more changes. (#1298)
38
+
39
+ # 0.9.21 - December 31st, 2019
40
+
41
+ [0.9.21]: https://github.com/lsegal/yard/compare/v0.9.20...v0.9.21
42
+
43
+ - Updates to add support for Ruby 2.7.0 (#1290, #1296)
44
+ - Fix parsing of multiline method signatures (#1220)
45
+ - Remove RubyGems post install message (#1269)
46
+ - Improve object deletion from RegistryStore (#1284)
47
+ - Improve memory usage performance (#1260)
48
+ - Handle include and extend calls with explicit receivers (#1274)
49
+ - Fix deep nesting of TOC items (#1288)
50
+ - Fix highlighting for Asciidoc markup code blocks (#1276)
51
+ - Fix HTML formatting of script tags (#1263)
52
+ - Update jquery to 3.4.1 (#1294)
53
+ - Test fixes (#1244)
54
+
55
+ # 0.9.20 - June 27th, 2019
56
+
57
+ [0.9.20]: https://github.com/lsegal/yard/compare/v0.9.19...v0.9.20
58
+
59
+ - Fix parsing of stringified Symbols in Ruby source (#1256).
60
+ - Fix path traversal vulnerability in `yard server`. This bug would allow
61
+ unsanitized HTTP requests to access arbitrary files on the machine of a
62
+ `yard server` host under certain conditions. Thanks to CuongMX from
63
+ Viettel Cyber Security for discovering this vulnerability.
64
+
65
+ # 0.9.19 - April 2nd, 2019
66
+
67
+ [0.9.19]: https://github.com/lsegal/yard/compare/v0.9.16...v0.9.19
68
+
69
+ - Fixed bug in browser back button (#1071, #1228)
70
+ - Fixed handling of ArgumentError in ExtraFileObject (#1198)
71
+ - Fixed double return tag displaying on boolean methods (#1226)
72
+ - Removed unused `Module#namespace_name` function (#1229)
73
+ - Fixed parsing order of README files. YARD will now prefer README over
74
+ README.md over README.x.md or README-x.md (and the like). READMEs will now
75
+ also be ordered by filename; the first README is still chosen unless
76
+ `--readme` is provided.
77
+ - Updated AsciiDoc markup support to use non-deprecated calls.
78
+
79
+ # [0.9.16] - August 11th, 2018
80
+
81
+ [0.9.16]: https://github.com/lsegal/yard/compare/v0.9.15...v0.9.16
82
+
83
+ - Documentation fixes (#1175, #1178).
84
+ - Fixed stack overflow issue when parsing extremely large lists (#1176).
85
+
86
+ # [0.9.15] - July 17th, 2018
87
+
88
+ [0.9.15]: https://github.com/lsegal/yard/compare/v0.9.14...v0.9.15
89
+
90
+ - Fixed security issue in parsing of Ruby code that could allow for arbitrary
91
+ execution. Credit to Nelson Elhage <nelhage@nelhage.com> for discovering this
92
+ issue.
93
+
94
+ # [0.9.14] - June 2nd, 2018
95
+
96
+ [0.9.14]: https://github.com/lsegal/yard/compare/v0.9.13...v0.9.14
97
+
98
+ - Fixed a regression in symbol parsing (#1170).
99
+
100
+ # [0.9.13] - May 28th, 2018
101
+
102
+ [0.9.13]: https://github.com/lsegal/yard/compare/v0.9.12...v0.9.13
103
+
104
+ - Added support for grouped constants via `@!group` directive (#1056).
105
+ - Added support for quoted symbols (#1168).
106
+ - Added support for i18n in tag text (#1169).
107
+ - Fixed HTML rendering of inline code blocks (#1152).
108
+ - Fixed rendering of anchor URLs in rendered HTML (#1154).
109
+
110
+ # [0.9.12] - November 26th, 2017
111
+
112
+ [0.9.12]: https://github.com/lsegal/yard/compare/v0.9.11...v0.9.12
113
+
114
+ - Be more explicit about lack of support for absolute paths in extra files
115
+ specified by `yard doc` command.
116
+
117
+ # [0.9.11] - November 23rd, 2017
118
+
119
+ [0.9.11]: https://github.com/lsegal/yard/compare/v0.9.10...v0.9.11
120
+
121
+ - Fixed security issue in `--readme` that allowed for arbitrary file reads on
122
+ disk. Credit to ztz <ztz@ztz.me> for discovering this issue.
123
+ - Improved styling for inline code blocks (#1142).
124
+
125
+ # [0.9.10] - November 18th, 2017
126
+
127
+ [0.9.10]: https://github.com/lsegal/yard/compare/v0.9.9...v0.9.10
128
+
129
+ - Added `--fail-on-warning` option for `yard doc` which exits with a non-zero
130
+ code if there are any warnings (#1093).
131
+ - Added support for parsing inside `Struct.new` blocks (#1099).
132
+ - Added support new ripper AST tokens (#1104, #1124).
133
+ - Fixed an issue where `@see (obj)` reference tags would fail (#1111)
134
+ - Fix sorting in `yard stats` (#1123).
135
+
136
+ # [0.9.9] - April 23rd, 2017
137
+
138
+ [0.9.9]: https://github.com/lsegal/yard/compare/v0.9.8...v0.9.9
139
+
140
+ - Added `gem uninstall` hooks to remove YARD documentation files. (#1083)
141
+ - Added support for C++ namespaces. (#809)
142
+ - Fixed issue where loading a .html page via an anchor would not scroll to
143
+ the anchor section. (#1082)
144
+ - Hide some Ruby warnings.
145
+ - Improve progress indicator icons in terminal.
146
+
147
+ # [0.9.8] - January 13th, 2017
148
+
149
+ [0.9.8]: https://github.com/lsegal/yard/compare/v0.9.7...v0.9.8
150
+
151
+ - Fixed installed gems not being correctly found in `yard server` and by plugins.
152
+ - Fixed tokenization of `%w(...)` array syntax.
153
+
154
+ # [0.9.7] - January 9th, 2017
155
+
156
+ [0.9.7]: https://github.com/lsegal/yard/compare/v0.9.6...v0.9.7
157
+
158
+ - Fixed resolution of absolute object paths with ambiguous names. (#1029)
159
+
160
+ # [0.9.6] - January 7th, 2017
161
+
162
+ [0.9.6]: https://github.com/lsegal/yard/compare/v0.9.5...v0.9.6
163
+
164
+ - Removed official support for Ruby 1.x (1.8/1.9). YARD can still be installed
165
+ in these versions, but support is not guaranteed. Simple bug fixes may still
166
+ be considered via pull request only. Issues without code will be automatically
167
+ closed.
168
+ - Added {YARD::Tags::Tag#explain_types} returning a plain English summary
169
+ of the type specification of a given tag. Also adds {YARD::Tags::TypesExplainer}
170
+ as an implementation class for the method.
171
+ - Added support for automatic linking of constants and method calls of
172
+ Ruby syntax highlighted source code in generated HTML. Also adds the
173
+ {YARD::Parser::Ruby::TokenResolver} implementation class to iterate over
174
+ tokenized code with extra resolved object information.
175
+ - Added support for compound constant assignments (`A::B::C = true`).
176
+ - Added `LibraryVersion#yardoc_file_for_SOURCE` callback method for sources with
177
+ a pre-determined yardoc file location. Implement this method instead of
178
+ manually setting `library.yardoc_file = ...` in your load method (you can
179
+ still assign the attribute manually).
180
+ - Use RubyGems 2.x+ API to query gems when available instead of using backport.
181
+ - Various bug fixes
182
+
183
+ # [0.9.5] - July 22nd, 2016
184
+
185
+ [0.9.5]: https://github.com/lsegal/yard/compare/v0.9.4...v0.9.5
186
+
187
+ - `yard doc` will now generate `.yardoc/processing` and `.yardoc/complete` files
188
+ to allow other tools to properly detect when YARD is in the middle of parsing
189
+ source files, and when it has completed writing the database.
190
+ - Added support for on-demand generation of LibraryVersion objects using the
191
+ `:disk` source type. LibraryVersion objects pointing to a .yardoc database
192
+ directory will now auto-generate if there is a `source_path` attached.
193
+ - Added warning for macros attached to non-method objects.
194
+ - Fixed a few more parsing errors.
195
+
196
+ # [0.9.4] - July 21st, 2016
197
+
198
+ [0.9.4]: https://github.com/lsegal/yard/compare/v0.9.3...v0.9.4
199
+
200
+ - Minor Ruby file parsing and CSS bug fixes.
201
+
202
+ # [0.9.3] - July 20th, 2016
203
+
204
+ [0.9.3]: https://github.com/lsegal/yard/compare/v0.9.2...v0.9.3
205
+
206
+ - Added support for {YARD::Server::RackAdapter} to be mounted under prefix URIs.
207
+ - Fixed regression in `yard server -g` that caused static file assets on index
208
+ page to return 404 errors.
209
+ - Fixed regression in `yard server -g` index page that disabled scrolling and
210
+ caused other HTML rendering glitches.
211
+
212
+ # [0.9.2] - July 19th, 2016
213
+
214
+ [0.9.2]: https://github.com/lsegal/yard/compare/v0.9.1...v0.9.2
215
+
216
+ - Added `yard config --gem-install-[yri|yard]` commands which auto-configure
217
+ your `~/.gemrc` file to run yri/yard instead of ri/rdoc on a `gem install`.
218
+ - Added support for gemspec metadata key `"yard.run"`, which can be either
219
+ `"yard"` or `"yri"` to run the respective commands on a `gem install`.
220
+ - Added `yard doc --no-progress` to hide the progress bar.
221
+ - Fix resolution error for compound proxy namespaces.
222
+ - YRI will now search across all gem versions (latest first) for the .yardoc
223
+ database.
224
+
225
+ # [0.9.1] - July 18th, 2016
226
+
227
+ [0.9.1]: https://github.com/lsegal/yard/compare/v0.9.0...v0.9.1
228
+
229
+ - Added "Attributes" section to `yard stats`.
230
+ - Added support for RubyGems 2.x `--document=yri,yard` flags. You can now run
231
+ YARD documentation generation against installed gems by running:
232
+ `gem install mygem --document=yard,yri`.
233
+ - Added `/static/*` routing for library-specific routing. This enables static
234
+ template files to be served on a per-library basis instead of globally shared
235
+ across the `yard server`.
236
+ - Added support for inlining of `{include:*}` syntax. Using this syntax in
237
+ the middle of a docstring paragraph will no longer create a separate paragraph
238
+ for the included text.
239
+ - Added support for resolving `{}` syntax in text templates, specifically for
240
+ use in `{include:*}` syntax.
241
+ - Improved object resolution logic in `{Foo::Bar}` syntax and {YARD::Registry.resolve}.
242
+ New resolution logic should now more accurately support resolving compound paths
243
+ across namespaces and through the inheritance tree (as Ruby does).
244
+ - The `frozen_string_literal: true` comment line in Ruby source files will now be
245
+ excluded from docstrings.
246
+ - Added a workaround for https://bugs.ruby-lang.org/issues/11485
247
+ - Fixed an issue where type using a docstring reference on an `@!attribute` macro
248
+ would be incorrectly parsed as a type specifier. This change updates the tag
249
+ parser to disallow newlines between the tag name and opening bracket of the
250
+ type specification.
251
+ - Fixed an issue where `--embed-mixins` would improperly embed methods from
252
+ inherited classes instead of modules.
253
+ - Fixed various parsing errors and YARD exceptions.
254
+ - Added a warning for modules or classes being redefined as constants.
255
+ - Reverted stripping of HTML in {YARD::Docstring#summary}.
256
+ - Added optimization to remove initial docstring parse on newly created code objects.
257
+ - {YARD::CodeObjects::Base#format} now passes the :type parameter to templates.
258
+ - Hide methods with filtered namespaces in Method Listing.
259
+
260
+ # [0.9.0] - July 4th, 2016
261
+
262
+ [0.9.0]: https://github.com/lsegal/yard/compare/v0.8.7.6...v0.9.0
263
+
264
+ Special thanks to Alex Dowad, MSP-Greg, and Alex McLain for their extended
265
+ contributions to this version.
266
+
267
+ - (Breaking Change): Replaced default template with an updated "frameless" version.
268
+ This change may affect backward compatibility if custom templates made modifications
269
+ to `default/fulldoc/html`, specifically the index or navigation lists.
270
+ - Added support for Ruby 2.1+ decorator style method declaration syntax. YARD now
271
+ supports:
272
+ private def foo(x, y) end
273
+ - Metadata headers in extra files can now be escaped from rendering by enclosing them
274
+ in HTML comment blocks (`<!--\n @metadata here... \n-->`). Ensure that the opening
275
+ comment tag is alone on the first line of the file to use this functionality.
276
+ - Improved parsing of various CRuby coding styles.
277
+ - Fixed issue with binary image assets when using `yard server`.
278
+ - Fixed deprecation warnings from Rake 10.x.
279
+ - Tests updated for RSpec 3.
280
+
281
+ # [0.8.7.6] - October 26, 2014
282
+
283
+ [0.8.7.6]: https://github.com/lsegal/yard/compare/v0.8.7.5...v0.8.7.6
284
+
285
+ - Support using `@option` tag on keyword arg splat parameter. (#729)
286
+ - Add `.stats_options` for `YardocTask`. (#800, #801)
287
+
288
+ # [0.8.7.5] - October 26, 2014
289
+
290
+ [0.8.7.5]: https://github.com/lsegal/yard/compare/v0.8.7.4...v0.8.7.5
291
+
292
+ - Fix linking of methods in top level namespace in method listing. (#776)
293
+ - Support using C macros in function declarations. (#810)
294
+ - YARD will no longer group comment blocks starting on the same column if they
295
+ are preceded by code. (#798)
296
+ - Handle anonymous lambda calls in toplevel scope. (#774)
297
+ - Support I18n in `@overload` tags. (#794)
298
+ - Support `yard stats` for objects with no file property. (#792)
299
+ - Support for named arguments in Ruby >= 2.1. (#785)
300
+ - Exclude README backup files from YARD generation. (#790)
301
+ - Turned on the lax spacing option in Redcarpet to comply with the
302
+ Markdown standard.
303
+ - Escape HTML in YARD server search placeholder template.
304
+ - Fix issue with `private_class_method` support. (#760, #767)
305
+ - Enable tables support by default in Redcarpet Markdown provider. (#765)
306
+
307
+ # 0.8.7.4 - March 22, 2014
308
+
309
+ [0.8.7.4]: https://github.com/lsegal/yard/compare/v0.8.7.3...v0.8.7.4
310
+
311
+ - Mark C methods as explicit but also remove explicit check in stats. (#727)
312
+ - Report unresolved parent namespaces as undocumentable errors instead. (#753)
313
+ - No longer ignore overridden methods from documentation check in stats (#719)
314
+ - Fix JRuby throwing exception when remove_method called on non-existent method. (#732)
315
+ - Add basic support for `private_class_method` (#747)
316
+ - Ensure namespace is always set when parent module is not found. (#753)
317
+ - Set overflow as auto on table of contents.
318
+ - Report 100% documented if nothing is undocumented. (#754)
319
+ - Added support for RubyGems 2.0.0+. (#742)
320
+ - Allow users to enter their own YARD RakeTask name. (#705)
321
+ - Fixed a typo that was causing Windows detection to always fail. (#715)
322
+ - Add debug information when loading a plugin fails. (#711)
323
+
324
+ # [0.8.7.3] - November 1, 2013
325
+
326
+ [0.8.7.3]: https://github.com/lsegal/yard/compare/v0.8.7.2...v0.8.7.3
327
+
328
+ - Handle Unicode method/class/file names in server URL encoding (lsegal/rubydoc.info#69).
329
+ - Style keyword style hashes with same symbol color in code highlighting (#707).
330
+ - Fix broken JS when visiting docs in file:// scheme (#706).
331
+ - Add support for new AsciiDoc file extensions (#704).
332
+ - Fix issues where non-Ruby code blocks would not display in Ruby 2 (#702).
333
+ - Add support for extra Ruby 2 symbol types in Ripper (#701).
334
+ - Ensure config directory exists before saving config file (#700).
335
+
336
+ # [0.8.7.2] - September 18, 2013
337
+
338
+ [0.8.7.2]: https://github.com/lsegal/yard/compare/v0.8.7.1...v0.8.7.2
339
+
340
+ - Disallow absolute URLs when using frame anchor support.
341
+ - Support casted functions in CRuby method declarations (#697)
342
+
343
+ # [0.8.7.1] - September 11, 2013
344
+
345
+ [0.8.7.1]: https://github.com/lsegal/yard/compare/v0.8.7...v0.8.7.1
346
+
347
+ - Fix potential XSS issue with frame anchor support.
348
+ - Add support for gettext 3.x gem.
349
+
350
+ # [0.8.7] - July 26, 2013
351
+
352
+ [0.8.7]: https://github.com/lsegal/yard/compare/v0.8.6.2...v0.8.7
353
+
354
+ - Added `--hide-api API` option to hide objects with a given `@api` tag (#685).
355
+ - Added "Returns ...." prefix to summary when a lone @return tag is used.
356
+ - Fixed issue that caused ref tags to be added to a docstring twice (#678).
357
+ - Fixed formatting issue in docstring summaries (#686)
358
+
359
+ # [0.8.6.2] - June 27, 2013
360
+
361
+ [0.8.6.2]: https://github.com/lsegal/yard/compare/v0.8.6.1...v0.8.6.2
362
+
363
+ - Fixed issue where `yard graph` was not displaying methods
364
+
365
+ # [0.8.6.1] - April 14, 2013
366
+
367
+ [0.8.6.1]: https://github.com/lsegal/yard/compare/v0.8.6...v0.8.6.1
368
+
369
+ - Fixed broken links in File menu on default HTML template
370
+ - Added --layout switch to `yard display` to wrap output in layout template.
371
+ - See {file:docs/WhatsNew.md} for more information on added features.
372
+
373
+ # [0.8.6] - April 13, 2013
374
+
375
+ [0.8.6]: https://github.com/lsegal/yard/compare/v0.8.5.2...v0.8.6
376
+
377
+ - Various fixes and improved Ruby 2.x compatibility support
378
+ - Added support for `asciidoc` markup type
379
+ - Added `yard markups` command to list available markup types
380
+ - Added `yard display` command to display and format an individual object
381
+ - See {file:docs/WhatsNew.md} for more information on added features.
382
+
383
+ # [0.8.5.2] - February 26, 2013
384
+
385
+ [0.8.5.2]: https://github.com/lsegal/yard/compare/v0.8.5.1...v0.8.5.2
386
+
387
+ - Support new keyword argument syntax in method signatures (Ruby 2.x)
388
+
389
+ # [0.8.5.1] - February 25, 2013
390
+
391
+ [0.8.5.1]: https://github.com/lsegal/yard/compare/v0.8.5...v0.8.5.1
392
+
393
+ - Fix `yard diff` of gem files with RubyGems 2.x
394
+
395
+ # [0.8.5] - February 24, 2013
396
+
397
+ [0.8.5]: https://github.com/lsegal/yard/compare/v0.8.4.1...v0.8.5
398
+
399
+ - Basic support for Ruby 2.0 (fix compat issues in RDoc 4.0, RubyGems 2.0)
400
+ - Add CSS styling for tables in default HTML template
401
+
402
+ # [0.8.4.1] - February 5, 2013
403
+
404
+ [0.8.4.1]: https://github.com/lsegal/yard/compare/v0.8.4...v0.8.4.1
405
+
406
+ - Fix regression that broke loading of existing yardoc dbs (#648)
407
+
408
+ # [0.8.4] - February 4, 2013
409
+
410
+ [0.8.4]: https://github.com/lsegal/yard/compare/v0.8.3...v0.8.4
411
+
412
+ - Add `-B/--bind` switch to yard server (#593, #608)
413
+ - Add CodeObjects::Base#title for plugins to customize how object
414
+ links display (#646)
415
+ - Disable linking objects filtered out by verifiers (#645)
416
+ - Allow macro expansion on class methods (#632)
417
+ - Expand newly attached macro on first DSL method call (#631)
418
+ - Disable RubyGems plugin in Ruby 2.0 (#627)
419
+ - Fix line range for class/module node bodies (#626)
420
+ - Search extended modules for attached DSL macros (#553)
421
+
422
+ # [0.8.3] - October 14, 2012
423
+
424
+ [0.8.3]: https://github.com/lsegal/yard/compare/v0.8.2.1...v0.8.3
425
+
426
+ - Add `--non-transitive-tag` to disable tag transitivity (#571)
427
+ - Support --db inside .yardopts for graph/server commands (#583, #586)
428
+ - Fix handling for =begin/=end docstrings (#577, #578)
429
+ - Parser only sorts file lists when a glob is provided (#572)
430
+ - Fix formatting in `{include:Object#method}` syntax (#569)
431
+ - Fix @option tag inside of module functions (#563)
432
+ - Fix to `--api` and `--no-api` support (#559)
433
+ - Fix class nesting issues when path starts with "::" (#552)
434
+
435
+ # [0.8.2.1] - June 9, 2012
436
+
437
+ [0.8.2.1]: https://github.com/lsegal/yard/compare/v0.8.2...v0.8.2.1
438
+
439
+ - Fix a set of regressions in yard server search and dynamic generation
440
+
441
+ # [0.8.2] - June 7, 2012
442
+
443
+ [0.8.2]: https://github.com/lsegal/yard/compare/v0.8.1...v0.8.2
444
+
445
+ - Added progress style output in tty terminals
446
+ - Embedded mixins should ignore methods defined on module (#539)
447
+ - Fixed permalinks for embedded mixins in `yard server` (#540)
448
+ - Improve parsing in CRuby code (#543)
449
+ - Ensure Registry.resolve picks module when parsing mixins (#545)
450
+ - Fixed regression that caused various commands to not show output (#548)
451
+ - Respect current visibility when parsing class conditions (#551)
452
+
453
+ # [0.8.1] - May 2, 2012
454
+
455
+ [0.8.1]: https://github.com/lsegal/yard/compare/v0.8.0...v0.8.1
456
+
457
+ - Added `--[no-]api` switch to generate docs for API sets (see {file:docs/WhatsNew.md} for details) (#532)
458
+ - The `yard list` command now uses cache by default (#533)
459
+ - Fix `yardoc` generating incorrectly named method list file (#528)
460
+ - Fix HTML output occasionally showing trailing mdash on options list (#522)
461
+
462
+ # [0.8.0] - April 30, 2012
463
+
464
+ [0.8.0]: https://github.com/lsegal/yard/compare/v0.7.5...v0.8.0
465
+
466
+ - See {file:docs/WhatsNew.md} for a list of added features
467
+ - Over 20 bug fixes:
468
+ - Properly filter hidden setter/getter attributes (#394)
469
+ - Fix test failures in Linux environments (#397, #472, #473, #512, #513)
470
+ - Fix attribute inheritance and @private (#432)
471
+ - Fix attribute parsing (#435)
472
+ - Allow aliases for attributes (#436)
473
+ - Fix namespace fetching in `handle_alias()` (#437)
474
+ - Fix overwritten attributes marked as inherited (#442)
475
+ - Fix documenting constants defined from C code with `rb_define_const()` (#443)
476
+ - Do not escape snippets twice (#445)
477
+ - Ajax method/class search should not fire when a non-printable character is pressed (#446)
478
+ - Fix yard server crashing when RDoc is not installed (#456)
479
+ - Fix tags ignored when `(see #foo)` is used (#457)
480
+ - Fix three "Returns" for two `@overload` tags (#458)
481
+ - Do not auto-detect DSL methods as method objects if parameter name is not a valid method name (#464)
482
+ - Fix attaching of macros to Object (#465)
483
+ - Fix handling of `%w()` source in `[]/[]=` parsed context. (#461, pull in #468)
484
+ - Don't add default `@return` if `@overload` has `@return`. (#458, pull in #469)
485
+ - Don't discard tags by (see ...). (#457, pull in #470)
486
+ - Fix constants listed as inherited when overwritten (#474)
487
+ - Fix `yardoc --asset` behaving differently on first and subsequent calls. (#477)
488
+ - `!!!lang` code blocks should set the lang in `<pre>`'s class. (#478, #479)
489
+ - Fix "File List" search tab error. (#502)
490
+ - Fix search bar not redirecting to method page. (#509)
491
+ - Fix server returning exception message bodies as String (#518)
492
+
493
+ # [0.7.5] - January 31, 2012
494
+
495
+ [0.7.5]: https://github.com/lsegal/yard/compare/v0.7.4...v0.7.5
496
+
497
+ - Various minor bug fixes
498
+
499
+ # [0.7.4] - December 2, 2011
500
+
501
+ [0.7.4]: https://github.com/lsegal/yard/compare/v0.7.3...v0.7.4
502
+
503
+ - Redcarpet is now the default Markdown formatting library. GFM now works out-of-box (#404)
504
+ - Fix server side searching for elements that are marked private (#420)
505
+ - Add 'textile_strict' and 'pre' markup types, reorganize text and none (#416)
506
+ - Improve encoding line detection (#415)
507
+ - Add support for `rb_define_alias` in CRuby code (#413)
508
+ - Fix rendering of some keywords in source view (#410)
509
+ - Add support for RDoc 3.10+ (#406, #407)
510
+ - Fix typewriter text being processed in code blocks (#403)
511
+ - Improve support for has_rdoc in RubyGems 1.8.x (#401)
512
+ - See the {file:docs/WhatsNew.md} document for details on added features
513
+
514
+ # [0.7.3] - October 15, 2011
515
+
516
+ [0.7.3]: https://github.com/lsegal/yard/compare/v0.7.2...v0.7.3
517
+
518
+ - Improve support for parsing under Ruby 1.9.2p290 and 1.9.3 (#365, #370)
519
+ - Add support for SWIG generated CRuby code (#369)
520
+ - Add support for `rb_define_attr` calls in CRuby code (#362)
521
+ - Handle file pointers in CRuby code (#358)
522
+
523
+ # [0.7.2] - June 14, 2011
524
+
525
+ [0.7.2]: https://github.com/lsegal/yard/compare/v0.7.1...v0.7.2
526
+
527
+ - Fix `yard --help` not showing proper output
528
+ - YARD now expands path to `.yardoc` file in daemon mode for server (#328)
529
+ - Fix `@overload` tag linking to wrong method (#330)
530
+ - Fix incorrect return type when using `@macro` (#334)
531
+ - YARD now requires 'thread' to support RubyGems 1.7+ (#338)
532
+ - Fix bug in constant documentation when using `%w()` (#348)
533
+ - Fix YARD style URL links when using autolinking markdown (#353)
534
+
535
+ # [0.7.1] - May 18, 2011
536
+
537
+ [0.7.1]: https://github.com/lsegal/yard/compare/v0.7.0...v0.7.1
538
+
539
+ - Fixes a bug in `yard server` not displaying class list properly.
540
+
541
+ # [0.7.0] - May 17, 2011
542
+
543
+ [0.7.0]: https://github.com/lsegal/yard/compare/v0.6.8...v0.7.0
544
+
545
+ - See the {file:docs/WhatsNew.md} document for details on added features
546
+ - Make sure that Docstring#line_range is filled when possible (#243)
547
+ - Set #verifier in YardocTask (#282)
548
+ - Parse BOM in UTF-8 files (#288)
549
+ - Fix instance attributes not showing up in method list (#302)
550
+ - Fix rendering of %w() literals in constants (#306)
551
+ - Ignore keyboard shortcuts when an input is active (#312)
552
+ - And more...
553
+
554
+ # [0.6.8] - April 14, 2011
555
+
556
+ [0.6.8]: https://github.com/lsegal/yard/compare/v0.6.7...v0.6.8
557
+
558
+ - Fix regression in RDoc 1.x markup loading
559
+ - Fix regression in loading of markup libraries for `yard server`
560
+
561
+ # [0.6.7] - April 6, 2011
562
+
563
+ [0.6.7]: https://github.com/lsegal/yard/compare/v0.6.6...v0.6.7
564
+
565
+ - Fix has_rdoc gem specification issue with new RubyGems plugin API (oops!)
566
+
567
+ # [0.6.6] - April 6, 2011
568
+
569
+ [0.6.6]: https://github.com/lsegal/yard/compare/v0.6.5...v0.6.6
570
+
571
+ - Fix error message when RDoc is not present (#270)
572
+ - Add markup type 'none' to perform basic HTML translation (fallback when RDoc is not present)
573
+ - Add support for RubyGems 1.7.x (#272)
574
+ - Fix rendering of `{url description}` syntax when description contains newline
575
+
576
+ # [0.6.5] - March 13, 2011
577
+
578
+ [0.6.5]: https://github.com/lsegal/yard/compare/v0.6.4...v0.6.5
579
+
580
+ - Support `ripper` gem in Ruby 1.8.7
581
+ - Upgrade jQuery to 1.5.1
582
+ - Fix handling of alias statements with quoted symbols (#262)
583
+ - Add CSS styles (#260)
584
+ - Unhandled exception in YARD::Handlers::Ruby::MixinHandler indexing documentation for eventmachine (#248)
585
+ - Splice any alias references on method re-definitions into separate methods (#247)
586
+ - Fix "yard graph" (#245)
587
+ - Don't process ++ typewriter text inside of HTML attributes (#244)
588
+ - Prioritize loading of Kramdown before Maruku (#241)
589
+ - Skip shebang encoding in docstrings (#238)
590
+ - Fix truncation of references in @deprecated (#232)
591
+ - Show @api private note when no other tags are present (#231)
592
+ - Detect docstrings starting with "##" as `Docstring#hash_flag` (#230)
593
+ - Remove trailing whitespace from freeform tags (#229)
594
+ - Fix line through for deprecated methods (#225)
595
+ - Mistake in Tags.md (#223)
596
+ - Improve database storage by being more efficient with filesystem usage (#222)
597
+ - Make Registry thread local (#221)
598
+ - Support `private_constant` class method for 1.9.3 (#219)
599
+ - Do not assume RDoc is installed (#214)
600
+
601
+ # [0.6.4] - December 21, 2010
602
+
603
+ [0.6.4]: https://github.com/lsegal/yard/compare/v0.6.3...v0.6.4
604
+
605
+ - Fix yri tool crashing with new Config class (gh-217)
606
+ - Fix support for ::TopLevelConstants (gh-216)
607
+ - YARD's test suite is now RSpec2 compatible (gh-215)
608
+ - Improved documentation for YARD::Server features (gh-207)
609
+ - Fix displaying of collaped method summary lists (gh-204)
610
+ - Fix automatic loading of markup providers (gh-206)
611
+ - Fix keyboard shortcuts for Chrome (gh-203)
612
+ - Disallow `extend self` inside of a class (gh-202)
613
+ - Constants now recognized in C extensions (gh-201)
614
+
615
+ # [0.6.3] - November 21, 2010
616
+
617
+ [0.6.3]: https://github.com/lsegal/yard/compare/v0.6.2...v0.6.3
618
+
619
+ - Fixed regression that caused `yardoc --markup` to silently exit
620
+
621
+ # [0.6.2] - November 15, 2010
622
+
623
+ [0.6.2]: https://github.com/lsegal/yard/compare/v0.6.1...v0.6.2
624
+
625
+ - **Plugins no longer automatically load, use `--plugin` to load a plugin**
626
+ - Added YARD::Config and ~/.yard/config YAML configuration file
627
+ - Added `yard config` command to view/edit YARD configuration file
628
+ - Fixes for YARD in 1.8.6 (gh-178)
629
+ - Various HTML template adjustments and fixes (gh-198,199,200)
630
+ - Improved `yard server -m` multi-project stability (gh-193)
631
+ - Fixed handling of `yardoc --no-private` with missing class definitions (gh-197)
632
+ - Added support for constants defined in C extensions (gh-177)
633
+ - Added support for Structs defined as "Klass = Struct.new(...)" (gh-187)
634
+ - Improved parsing support for third-party gems (gh-174,180)
635
+ - Improved support for JRuby 1.6.4+. YARD now passes all specs in JRuby (gh-185)
636
+ - Improved YARD documentation (gh-172,191,196)
637
+
638
+ # [0.6.1] - September 06, 2010
639
+
640
+ [0.6.1]: https://github.com/lsegal/yard/compare/v0.6.0...v0.6.1
641
+
642
+ - Fixed TOC showing on top of class/method list in no-frames view
643
+ - A message now displays when running `yard server` with Rack/Mongrel installed
644
+ - Improved performance of JS inline search for large class/method lists
645
+ - Improved link titles for relative object links
646
+ - Removed `String#camelcase` and `String#underscore` for better Rails compat.
647
+ - Fixed support for loading .yardoc files under Windows
648
+ - Fixed inheritance tree arrows not displaying in certain environments
649
+
650
+ # [0.6.0] - August 29, 2010
651
+
652
+ [0.6.0]: https://github.com/lsegal/yard/compare/v0.5.8...v0.6.0
653
+
654
+ - Added dynamic local documentation server
655
+ - Added @group/@endgroup declarations to organize methods into groups
656
+ - Added `yard` executable to serve as main CLI tool with pluggable commands
657
+ - Added `--asset` switch to `yardoc` to copy files/dirs to output dir
658
+ - Added ability to register/manipulate tags via CLI (`--tag`, etc.)
659
+ - Added `yard diff` command
660
+ - Added statistics to `yardoc` output (and `yard stats` command)
661
+ - Added Javascript generated Table of Contents to file pages
662
+ - Updated various APIs
663
+ - Removed `yard-graph` executable
664
+ - See more changes in the {file:docs/WhatsNew.md what's new document}
665
+
666
+ # [0.5.8] - June 22, 2010
667
+
668
+ [0.5.8]: https://github.com/lsegal/yard/compare/v0.5.7...v0.5.8
669
+
670
+ - Merge fix from 0.6 branch for --no-private visibility checking
671
+
672
+ # [0.5.7] - June 21, 2010
673
+
674
+ [0.5.7]: https://github.com/lsegal/yard/compare/v0.5.6...v0.5.7
675
+
676
+ - Fixed visibility flag parsing in `yardoc`
677
+ - Updated Parser Architecture documentation with new SourceParser API
678
+ - Improved Registry documentation for new load commands
679
+ - Fix loading of .yardoc file as cache (and preserving aliases)
680
+ - Fix "lib" directory missing when running YARD on installed gems
681
+
682
+ # [0.5.6] - June 12, 2010
683
+
684
+ [0.5.6]: https://github.com/lsegal/yard/compare/v0.5.5...v0.5.6
685
+
686
+ - Bug fixes for RubyGems plugin, `has_rdoc=false` should now work
687
+ - New API for registering custom parsers. See {file:docs/WhatsNew.md}
688
+
689
+ # [0.5.5] - May 22, 2010
690
+
691
+ [0.5.5]: https://github.com/lsegal/yard/compare/v0.5.4...v0.5.5
692
+
693
+ - Various bug fixes
694
+
695
+ # [0.5.4] - March 22, 2010
696
+
697
+ [0.5.4]: https://github.com/lsegal/yard/compare/v0.5.3...v0.5.4
698
+
699
+ - See {file:docs/WhatsNew.md what's new document} for changes
700
+
701
+ # [0.5.3] - January 11, 2010
702
+
703
+ [0.5.3]: https://github.com/lsegal/yard/compare/v0.5.2...v0.5.3
704
+
705
+ - See {file:docs/WhatsNew.md what's new document} for changes
706
+
707
+ # [0.5.2] - December 16, 2009
708
+
709
+ [0.5.2]: https://github.com/lsegal/yard/compare/v0.5.1...v0.5.2
710
+
711
+ - See {file:docs/WhatsNew.md what's new document} for changes
712
+
713
+ # [0.5.1] - December 15, 2009
714
+
715
+ [0.5.1]: https://github.com/lsegal/yard/compare/v0.5.0...v0.5.1
716
+
717
+ - See {file:docs/WhatsNew.md what's new document} for changes
718
+
719
+ # [0.5.0] - December 13, 2009
720
+
721
+ [0.5.0]: https://github.com/lsegal/yard/compare/v0.4.0...v0.5.0
722
+
723
+ - See {file:docs/WhatsNew.md what's new document} for changes
724
+
725
+ # [0.4.0] - November 15, 2009
726
+
727
+ [0.4.0]: https://github.com/lsegal/yard/compare/v0.2.3.5...v0.4.0
728
+
729
+ - Added new templating engine based on [tadpole](http://github.com/lsegal/tadpole)
730
+ - Added YARD queries (`--query` CLI argument to yardoc)
731
+ - Greatly expanded YARD documentation
732
+ - Added plugin support
733
+ - New `@abstract` and `@private` tags
734
+ - Changed default rake task to `rake yard`
735
+ - Read about changes in {file:docs/WhatsNew.md}
736
+
737
+ # [0.2.3.5] - August 13, 2009
738
+
739
+ [0.2.3.5]: https://github.com/lsegal/yard/compare/v0.2.3.4...v0.2.3.5
740
+
741
+ - Minor bug fixes.
742
+
743
+ # [0.2.3.4] - August 07, 2009
744
+
745
+ [0.2.3.4]: https://github.com/lsegal/yard/compare/v0.2.3.3...v0.2.3.4
746
+
747
+ - Minor bug fixes.
748
+
749
+ # [0.2.3.3] - July 26, 2009
750
+
751
+ [0.2.3.3]: https://github.com/lsegal/yard/compare/v0.2.3.2...v0.2.3.3
752
+
753
+ - Minor bug fixes.
754
+
755
+ # [0.2.3.2] - July 06, 2009
756
+
757
+ [0.2.3.2]: https://github.com/lsegal/yard/compare/v0.2.3.1...v0.2.3.2
758
+
759
+ - Fix Textile hard-break issues
760
+ - Add description for @see tag to use as link title in HTML docs.
761
+ - Add --title CLI option to specify a title for HTML doc files.
762
+ - Add custom.css file that can be overridden with various custom
763
+ styelsheet declarations. To use this, simply add `default/fulldoc/html/custom.css`
764
+ inside your code directory and use the `-t` template directory yardoc CLI
765
+ option to point to that template directory (the dir holding 'default').
766
+ - Add support in `yardoc` CLI to specify extra files (formerly --files)
767
+ by appending "- extra files here" after regular source files. Example:
768
+
769
+ yardoc --private lib/**/*.rb - FAQ LICENSE
770
+
771
+ # [0.2.3.1] - June 13, 2009
772
+
773
+ [0.2.3.1]: https://github.com/lsegal/yard/compare/v0.2.3...v0.2.3.1
774
+
775
+ - Add a RubyGems 1.3.2+ plugin to generate YARD documentation instead of
776
+ RDoc. To take advantage of this plugin, set `has_rdoc = 'yard'` in your
777
+ .gemspec file.
778
+
779
+ # [0.2.3] - June 07, 2009
780
+
781
+ [0.2.3]: https://github.com/lsegal/yard/compare/v0.2.2...v0.2.3
782
+
783
+ - See the {file:docs/WhatsNew.md} file for a list of important new features.
784
+
785
+ # [0.2.2] - Jun 16, 2008
786
+
787
+ [0.2.2]: https://github.com/lsegal/yard/compare/v0.2.1...v0.2.2
788
+
789
+ - This is the largest changset since yard's conception and involves a complete
790
+ overhaul of the parser and API to make it more robust and far easier to
791
+ extend and use for the developer.
792
+
793
+ # [0.2.1] - February 20, 2008
794
+
795
+ [0.2.1]: https://github.com/lsegal/yard/compare/v0.1a...v0.2.1
796
+
797
+ - See the {file:docs/WhatsNew.md} file for a list of important new features.
798
+
799
+ # 0.1a - February 24, 2007
800
+
801
+ - Released 0.1a experimental version for testing. The goal here is
802
+ to get people testing YARD on their code because there are too many possible
803
+ code styles to fit into a sane amount of test cases. It also demonstrates the
804
+ power of YARD and what to expect from the syntax (Yardoc style meta tags).