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
@@ -1,658 +0,0 @@
1
- == 3.1 / 2016-05-22
2
-
3
- * 1 documentation change:
4
-
5
- * Tim Smith (@tas50) updated the build badges to be SVGs to improve
6
- readability on high-density (retina) screens with pull request
7
- {#112}[https://github.com/mime-types/ruby-mime-types/pull/112].
8
-
9
- * 3 bug fixes
10
-
11
- * A test for MIME::Types::Cache fails under Ruby 2.3 because of frozen
12
- strings, {#118}[https://github.com/mime-types/ruby-mime-types/issues/118].
13
- This has been fixed.
14
-
15
- * The JSON data has been incorrectly encoded since the release of mime-types
16
- 3 on the +xrefs+ field, because of the switch to using a Set to store
17
- cross-reference information. This has been fixed.
18
-
19
- * A tentative fix for
20
- {#117}[https://github.com/mime-types/ruby-mime-types/issues/117] has been
21
- applied, removing the only circular require dependencies that exist (and
22
- for which there was code to prevent, but the current fix is simpler).
23
- I have no way to verify this fix and depending on how things are loaded by
24
- +delayed_job+, this fix may not be sufficient.
25
-
26
- * 1 governance change
27
-
28
- * Updated to {Contributor Covenant 1.4}[Code-of-Conduct_rdoc.html].
29
-
30
- == 3.0 / 2015-11-21
31
-
32
- * 2 governance changes
33
-
34
- * This project and the related mime-types-data project are now exclusively
35
- MIT licensed. Resolves
36
- {#95}[https://github.com/mime-types/ruby-mime-types/issues/95].
37
-
38
- * All projects under the mime-types organization now have a standard code of
39
- conduct adapted from the {Contributor
40
- Covenant}[http://contributor-covenant.org]. This text can be found in the
41
- {Code-of-Conduct.rdoc}[Code-of-Conduct_rdoc.html] file.
42
-
43
- * 3 major changes
44
-
45
- * All methods deprecated in mime-types 2.x have been removed.
46
- * mime-types now requires Ruby 2.0 compatibility or later. Resolves
47
- {#97}[https://github.com/mime-types/ruby-mime-types/issues/97].
48
- * The registry data has been removed from mime-types and put into
49
- mime-types-data, maintained and released separately. It can be found at
50
- {mime-types-data}[https://github.com/mime-types/mime-types-data].
51
-
52
- * 17 minor changes:
53
-
54
- * MIME::Type changes:
55
-
56
- * Changed the way that simplified types representations are creatd to
57
- reflect the fact that +x-+ prefixes are no longer considered special
58
- according to IANA. A simplified MIME type is case-folded to lowercase. A
59
- new keyword parameter, +remove_x_prefix+, can be provided to remove +x-+
60
- prefixes.
61
- * Improved initialization with an Array works so that extensions do not
62
- need to be wrapped in another array. This means that <tt>%w(text/yaml
63
- yaml yml)</tt> works in the same way that <tt>['text/yaml', %w(yaml
64
- yml)]</tt> did (and still does).
65
- * Changed +priority_compare+ to conform with attributes that no longer
66
- exist.
67
- * Changed the internal implementation of extensions to use a frozen Set.
68
- * When extensions are set or modified with +add_extensions+, the primary
69
- registry will be informed of a need to reindex extensions. Resolves
70
- {#84}[https://github.com/mime-types/ruby-mime-types/issues/84].
71
- * The preferred extension can be set explicitly. If not set, it will be the
72
- first extension. If the preferred extension is not in the extension list,
73
- it will be added.
74
- * Improved how xref URLs are generated.
75
- * Converted +obsolete+, +registered+ and +signature+ to attr_accessors.
76
-
77
- * MIME::Types changes:
78
-
79
- * Modified MIME::Types.new to track instances of MIME::Types so that they
80
- can be told to reindex the extensions as necessary.
81
- * Removed +data_version+ attribute.
82
- * Changed #[] so that the +complete+ and +registered+ flags are keywords
83
- instead of a generic options parameter.
84
- * Extracted the class methods to a separate file.
85
- * Changed the container implementation to use a Set instead of an Array to
86
- prevent data duplication. Resolves
87
- {#79}[https://github.com/mime-types/ruby-mime-types/issues/79].
88
-
89
- * MIME::Types::Cache changes:
90
-
91
- * Caching is now based on the data gem version instead of the mime-types
92
- version.
93
- * Caching is compatible with columnar registry stores.
94
-
95
- * MIME::Types::Loader changes:
96
-
97
- * MIME::Types::Loader::PATH has been removed and replaced with
98
- MIME::Types::Data::PATH from the mime-types-data gem. The environment
99
- variable RUBY_MIME_TYPES_DATA is still used.
100
- * Support for the long-deprecated mime-types v1 format has been removed.
101
- * The registry is default loaded from the columnar store by default. The
102
- internal format of the columnar store has changed; many of the boolean
103
- flags are now loaded from a single file. Resolves
104
- {#85}[https://github.com/mime-types/ruby-mime-types/85].
105
-
106
- == 2.6.2 / 2015-09-13
107
-
108
- * Bugs:
109
- * Emilio Losada (@losadaem) fixed an error where +each_with_object+'s block
110
- parameters are the inverse of those used by +inject+. Resolves
111
- {#107}[https://github.com/mime-types/ruby-mime-types/issues/107] with pull
112
- request {#108}[https://github.com/mime-types/ruby-mime-types/pull/108].
113
- * Matt Beedle (@mattbeedle) fixed a typo in MIME::Type::Columnar negatively
114
- affecting people who use the +use_instead+ functionality. Resolved in
115
- {#109}[https://github.com/mime-types/ruby-mime-types/pull/109].
116
- * Documentation:
117
- * Juanito Fatas (@JuanitoFatas) fixed a documentation issue with the README
118
- not properly linking internally on the generated rdoc source. Resolved with
119
- {#105}[https://github.com/mime-types/ruby-mime-types/pull/105].
120
- * Development:
121
- * Fixed a minor issue in the IANA registry parser that would generate empty
122
- +text+ xrefs if the +text+ section was empty.
123
-
124
- == 2.6.1 / 2015-05-25
125
-
126
- * Bugs:
127
- * Make columnar store handle all supported extensions, not just the first.
128
- Resolved in {#103}[https://github.com/mime-types/ruby-mime-types/pull/103]
129
- by Jeremy Evans (@jeremyevans).
130
- * Avoid circular require when using the columnar store. Resolved in
131
- {#102}[https://github.com/mime-types/ruby-mime-types/pull/102] by
132
- Jeremy Evans (@jeremyevans).
133
-
134
- == 2.6 / 2015-05-25
135
-
136
- * New Feature:
137
- * Columnar data storage for the MIME::Types registry, contributed by Jeremy
138
- Evans (@jeremyevans). Reduces default memory use substantially (the mail
139
- gem drops from 19 Mib to about 3 Mib). Resolves
140
- {#96}[https://github.com/mime-types/ruby-mime-types/pull/96],
141
- {#94}[https://github.com/mime-types/ruby-mime-types/issues/94],
142
- {#83}[https://github.com/mime-types/ruby-mime-types/issues/83]. Partially
143
- addresses {#64}[https://github.com/mime-types/ruby-mime-types/issues/64]
144
- and {#62}[https://github.com/mime-types/ruby-mime-types/issues/62].
145
- * Development:
146
- * Removed caching of deprecation messages in preparation for mime-types 3.0.
147
- Now, deprecated methods will always warn their deprecation instead of only
148
- warning once.
149
- * Added a logger for deprecation messages.
150
- * Renamed <tt>lib/mime.rb</tt> to <tt>lib/mime/deprecations.rb</tt> to not
151
- conflict with the {mime}[https://rubygems.org/gems/mime] gem on behalf of
152
- the maintainers of the {Praxis Framework}[http://praxis-framework.io/].
153
- Provided by Josep M. Blanquer (@blanquer),
154
- {#100}[https://github.com/mime-types/ruby-mime-types/pull/100].
155
- * Added the columnar data conversion tool, also provided by Jeremy Evans.
156
- * Documentation:
157
- * Improved documentation and ensured that all deprecated methods are marked
158
- as such in the documentation.
159
- * Development:
160
- * Added more Ruby variants to Travis CI.
161
- * Silenced deprecation messages for internal tools. Noisy deprecations are
162
- noisy, but that's the point.
163
-
164
- == 2.5 / 2015-04-25
165
-
166
- * Bugs:
167
- * David Genord (@albus522) fixed a bug in loading MIME::Types cache where a
168
- container loaded from cache did not have the expected +default_proc+,
169
- {#86}[https://github.com/mime-types/ruby-mime-types/pull/86].
170
- * Richard Schneeman (@schneems) provided a patch that substantially reduces
171
- unnecessary allocations.
172
- * Documentation:
173
- * Tibor Szolár (@flexik) fixed a typo in the README,
174
- {#82}[https://github.com/mime-types/ruby-mime-types/pull/82]
175
- * Fixed {#80}[https://github.com/mime-types/ruby-mime-types/issues/80],
176
- clarifying the relationship of MIME::Type#content_type and
177
- MIME::Type#simplified, with Ken Ip (@kenips).
178
- * Development:
179
- * Juanito Fatas (@JuanitoFatas) enabled container mode on Travis CI,
180
- {#87}[https://github.com/mime-types/ruby-mime-types/pull/87].
181
- * Moved development to a mime-types organization under
182
- {mime-types/ruby-mime-types}[https://github.com/mime-types/ruby-mime-types].
183
-
184
- == 2.4.3 / 2014-10-21
185
-
186
- * Bugs:
187
- * Restored Ruby 1.9.2 support by using +private_constant+ conditionally.
188
- Fixes {#77}[https://github.com/mime-types/ruby-mime-types/issues/77] found by
189
- Kris Leech (@krisleech). The conditional use of +private_constant+ here
190
- will be removed for mime-types 3.0, when Ruby 1.9.2 support will be
191
- unconditionally removed.
192
-
193
- == 2.4.2 / 2014-10-15
194
-
195
- * Bugs:
196
- * Aaron Patterson (@tenderlove) found a loading bug and provided a fix that
197
- nearly doubled registry load performance
198
- ({#74}[https://github.com/mime-types/ruby-mime-types/pull/74]).
199
- * Godfrey Chan (@chancancode) provided a prophylactic security fix to use
200
- <tt>JSON.parse</tt> instead of <tt>JSON.load</tt> in
201
- {#75}[https://github.com/mime-types/ruby-mime-types/pull/75]. This provides a
202
- 20% improvement over the already improved result, resulting in a total 55%
203
- performance boost.
204
-
205
- == 2.4.1 / 2014-10-07
206
-
207
- mime-types 2.4 was pulled.
208
-
209
- * Bugs:
210
- * Restored the extension sort order from mime-types 1.25.1 and modified
211
- MIME::Type#extensions= to no longer sort extensions when set. This resolves
212
- {#71}[https://github.com/mime-types/ruby-mime-types/issues/71] and should fix
213
- Paperclip.
214
- * API Changes:
215
- * Added MIME::Type#preferred_extension to return the preferred extension for
216
- the MIME type. This should be used in preference to the current mechanism
217
- used by many clients, <tt>type.extensions.first</tt>. This will allow the
218
- implementation to change over time.
219
- * Added MIME::Type#friendly based on the concept presented by Łukasz Śliwa’s
220
- {friendly_mime}[https://github.com/lukaszsliwa/friendly_mime] gem. The
221
- initial English data for this is pulled from +friendly_mime+.
222
- * Added MIME::Type#i18n_key and MIME::Type.i18n_key to represent and convert
223
- MIME content types as translation keys for the I18n library.
224
-
225
- * MIME Type Development Tools:
226
- * Adding documentation to conversion methods.
227
- * Adding some robustness to missing Nokogiri support.
228
- * Extending coverage to fully cover new code. Tests now cover all of
229
- mime-types.
230
-
231
- == 2.3 / 2014-05-23
232
-
233
- * Bugs:
234
- * Fixed a bug in <tt>MIME::Types#type_for</tt> where type specifications that
235
- did not match a MIME::Type would be returned as +nil+ inside the returned
236
- array. This was incorrect behaviour as those values should not have been
237
- returned, resulting in an empty array.
238
- * MIME Type Development Tools:
239
- * As always, there are bugs in the IANA registry because it's manually
240
- maintained. Some robustness has been added to properly writing file
241
- template references where the file template reference is not a full media
242
- type specification (e.g., 'amr-wb\+' instead of 'audio/amr-wb\+').
243
- * Both the IANA and Apache import tools were unnecessarily case-sensitive in
244
- matching against already-existing MIME types, resulting in extra work to
245
- weed out duplicates that differed only in the case of the canonical content
246
- type. This has been fixed.
247
-
248
- == 2.2 / 2014-03-14
249
-
250
- * Clarified contribution guidelines for MIME types. Resolves
251
- {#57}[https://github.com/mime-types/ruby-mime-types/issues/57].
252
- * Fixed a small bug where deprecated methods would warn of deprecation when
253
- called by internal methods. Resolves
254
- {#60}[https://github.com/mime-types/ruby-mime-types/issues/60].
255
- * Dropped Code Climate; added Coveralls for test coverage reports.
256
- * Removing external references to RubyForge, as it is shutting down. Resolves
257
- {#59}[https://github.com/mime-types/ruby-mime-types/issues/59].
258
-
259
- == 2.1 / 2014-01-25
260
-
261
- * API Changes (MIME::Type):
262
- * Added MIME::Type#xrefs and MIME::Type#xref_urls that have better handling
263
- of types of reference information. MIME::Type#references= has been
264
- deprecated. In a future release, both MIME::Type#references will be turned
265
- into a short-hand view on MIME::Type#xrefs, MIME::Type#urls will be an
266
- alias for MIME::Type#xref_urls, and MIME::Type#references= will be removed.
267
- * New or Updated MIME Types:
268
- * This information is now tracked in History-Types.rdoc.
269
- * MIME Type Development Tools:
270
- * The IANA registry format changed, breaking the IANA registry tool
271
- previously used. Rewrote IANADownloader and IANADownloader::Parser as
272
- IANARegistryParser using the XML form.
273
- * The LTSW list has been dropped as it has not been updated since 2002.
274
- * The default Apache MIME types configuration list is now used to enrich MIME
275
- type data with additional extension information.
276
-
277
- == 2.0 / 2013-10-27
278
-
279
- * API Changes (General):
280
- * mime-types is no longer compatible with Ruby 1.8. Additionally, for its
281
- YAML operations (normally development and test), it requires a YAML parser
282
- that conforms to the Psych parser, not the Syck parser. This would only be
283
- a problem with an alternative Ruby 1.9.2 interpreter that does not
284
- implement the Psych parser conventions by requiring +psych+.
285
- * MIME::InvalidContentType has been renamed to
286
- MIME::Type::InvalidContentType.
287
- * API Changes (MIME::Type):
288
- * Construction of a MIME::Type can be with any of the following objects:
289
- * An array containing a valid content type identifier and an optional array
290
- of extensions. This allows MIME::Type.new to be used instead of
291
- MIME::Type.from_array for the most common use-case. Fixes
292
- {#43}[https://github.com/mime-types/ruby-mime-types/pull/43].
293
- * A Hash containing the output of MIME::Type#to_h, as would be deserialized
294
- from the JSON representation of a MIME::Type. This replaces
295
- MIME::Type.from_hash using a different parameter set.
296
- * Another MIME::Type.
297
- * A content type identifier string.
298
- * Assignment of an invalid encoding to MIME::Type#encoding= will raise a
299
- MIME::Type::InvalidEncoding exception rather than a plain ArgumentError.
300
- * MIME::Type#url has been renamed to MIME::Type#references.
301
- * MIME::Type#use_instead is now tracked as its own attribute, not as part of
302
- MIME::Type#docs.
303
- * MIME::Type#system, MIME::Type#system?, MIME::Type#platform?,
304
- MIME::Type#to_a, MIME::Type#to_hash, MIME::Type.from_array,
305
- MIME::Type.from_hash, and MIME::Type.from_mime_type have been deprecated
306
- for removal.
307
- * Implemented YAML object encoding and decoding methods,
308
- MIME::Type#encode_with and MIME::Type#init_with.
309
- * Implemented JSON hash encoding methods.
310
- * Added MIME::Type#add_extensions to easily add extensions to a MIME::Type.
311
- Fixes {#44}[https://github.com/mime-types/ruby-mime-types/pull/44].
312
- * API Changes (MIME::Types):
313
- * MIME type caching has been extracted to its own class. It is structurally
314
- similar to what was introduced with mime-types 1.25, but is no longer
315
- considered an experimental interface.
316
- * MIME type loading has been extracted to its own class. Loading has changed
317
- substantially.
318
- * MIME::Types#[] accepts a new filter flag, :registered. The :platform flag
319
- has been deprecated.
320
- * The MIME::Types#type_for platform parameter has been deprecated.
321
- * Added the ability for MIME::Types#type_for produce results for multiple
322
- filenames or extensions by providing an array as the first parameter. Fixes
323
- {#42}[https://github.com/mime-types/ruby-mime-types/pull/42].
324
- * MIME::Types#add_type_variant and MIME::Types#index_extensions have been
325
- deprecated as public methods. They will be private in a future version.
326
- * MIME::Types#defined_types, MIME::Types.cache_file,
327
- MIME::Types.add_type_variant, and MIME::Types.index_extensions have been
328
- deprecated for removal.
329
- * Default Registry Changes:
330
- * The default registry is now a file in the directory data/, located via
331
- MIME::Types::Loader::PATH. +PATH+ is defined in the file
332
- lib/mime/types/path.rb so that system packagers only have to modify one
333
- file in order to put the registry in a location that is not where a gem
334
- version of mime-types would expect it. This resolves issue
335
- {#36}[https://github.com/mime-types/ruby-mime-types/pull/36], reported by
336
- @postmodern.
337
- * The default registry is now a single file in JSON format. This resolves
338
- issue {#28}[https://github.com/mime-types/ruby-mime-types/pull/28] reported
339
- by @jasonlor (an error with mime-types in MacRuby).
340
- * The default registry is compiled from YAML files in type-lists/, resolving
341
- issue {#37}[https://github.com/mime-types/ruby-mime-types/pull/37]
342
- reported by @postmodern requesting an easier-to-edit format.
343
- * New or Updated MIME Types:
344
- * Major updates to the registered MIME type list from IANA using the improved
345
- developer tools.
346
- * Added:
347
- * application/xhtml\+xml (HTML5)
348
- * multipart/x-mixed-replace (HTML5)
349
- * application/vnd.apple.pkpass (Apple PassBook) with extension pkpass.
350
- * Modified:
351
- * application/gzip (RFC6713) added extension (gz) and encoding.
352
- * application/epub\+zip is not a registered MIME type.
353
- * application/rss\+xml is not a registered MIME type.
354
- * application/x-director reported incorrect extensions.
355
- * application/x-gzip marked as obsolete (use application/gzip instead).
356
- * application/x-maker marked as obsolete (use application/vnd.framemaker
357
- instead).
358
- * image/webp is not a registered MIME type; added a URL to Google's
359
- proposed standard document.
360
- * text/html added URL to the HTML5 specification.
361
- * text/cache-manifest added URL to the HTML5 specification.
362
- * text/plain (VMS .doc files) marked as non-standard. This type will be
363
- merged with the standard text/plain type in a future release.
364
- * Added md, markdown, rst, and textile extensions to text/plain.
365
- * MIME Type Development Tools:
366
- * The benchmarking task has been moved mostly to support/benchmarker.rb.
367
- * A task for SimpleCov coverage has been added (<tt>rake test:coverage</tt>).
368
- * IANA type registry downloading has been substantially improved and the
369
- implementation no longer resides in the Rakefile; it has instead been moved
370
- to support/iana_downloader.rb. This takes advantage of the new YAML
371
- encoding functionality to update added or modified MIME types
372
- non-destructively in <tt>type-lists/</tt> by default.
373
- * Rake tasks <tt>convert:yaml:json</tt> and <tt>convert:json:yaml</tt>
374
- provide functionality to convert the human-editable YAML format in
375
- <tt>type-lists/</tt> to the JSON format in <tt>data/</tt> and vice-versa.
376
- This is powered by support/convert.rb.
377
-
378
- == 1.25 / 2013-08-30
379
-
380
- * New Features:
381
- * Adding lazy loading and caching functionality to the default data based on
382
- work done by Greg Brockman (gdb).
383
- * Bugs:
384
- * Force the default internal application encoding to be used when reading the
385
- MIME types database. Based on a change by briangamble, found in the rapid7
386
- fork.
387
- * New extensions:
388
- * mjpeg (video/x-motion-jpeg) based on a change by punkrats, found in the
389
- vidibus fork.
390
- * Modernized Minitest configuration.
391
-
392
- == 1.24 / 2013-08-14
393
-
394
- * Code Climate:
395
- * Working on improving the quality of the mime-types codebase through the use
396
- of Code Climate.
397
- * Simplified MIME::Type.from_array to make more assumptions about assignment.
398
- * Documentation:
399
- * LeoYoung <mrleoyoung@gmail.com> pointed out that the README.rdoc contained
400
- examples that could never possibly work because MIME::Types#[] returns (for
401
- all the versions I have handy) an array, not a single type. I have updated
402
- README.rdoc to reflect this.
403
- * Removed Nokogiri as a declared development dependency. It is still required
404
- if you're going to use the IANA parser functionality, but it is not necessary
405
- for most development purposes. This has been removed to ensure that Travis CI
406
- passes on Ruby 1.8.7.
407
- * New MIME Types:
408
- * 7zip (application/x-7z-compressed). Fixes a request by @kodram.
409
- {#32}[https://github.com/mime-types/ruby-mime-types/issues/32]
410
- * application/x-www-form-urlencoded. Fixes a request by @alexkwolfe.
411
- {#39}[https://github.com/mime-types/ruby-mime-types/issues/39]
412
- * Various new MIME types from IANA:
413
- * application/mbms-schedule\+xml from 3GPP and Turcotte.
414
- * application/provenance\+xml from W3C and Herman.
415
- * application/session-info from 3GPP and Firmin.
416
- * application/urc-grpsheet\+xml, application/urc-targetdesc\+xml,
417
- application/uisocketdesc\+xml from Zimmermann.
418
- * application/api\+json from Klabnik.
419
- * application/vnd.etsi.pstn\+xml from Han and Belling.
420
- * application/vnd.fujixerox.docuworks.container from Tashiro.
421
- * application/vnd.windows.devicepairing from Dandawate.
422
- * video/vnd.radgamettools.bink and video/vnd.radgamettools.smacker from
423
- Andersson.
424
- * Updated MIME Types:
425
- * RFC 6960 was adopted (application/ocsp-request and application/ocsp-response).
426
-
427
- == 1.23 / 2013-04-20
428
-
429
- * New Feature:
430
- * Arnaud Meuret (@ameuret) suggested that it could be useful if the MIME type
431
- collection was enumerable, so he implemented it in
432
- {#30}[https://github.com/mime-types/ruby-mime-types/pull/30]. Thanks for
433
- the contribution!
434
- * Updated MIME Types:
435
- * RFC6910 was adopted (application/call-completion).
436
- * RFC6902 was adopted (application/json-patch\+json).
437
- * RFC6917 was adopted (application/mrb-consumer\+xml,
438
- application/mrb-publish\+xml).
439
- * RFC6922 was adopted (application/sql).
440
- * RFC2560 is being
441
- {updated}[http://tools.ietf.org/html/draft-ietf-pkix-rfc2560bis].
442
- * Administrivia:
443
- * The gemspec now includes information about the licenses under which the
444
- mime-types gem is available.
445
- * Using hoe-gemspec2 instead of hoe-gemspec.
446
-
447
- == 1.22 / 2013-03-30
448
-
449
- * New MIME Types:
450
- * Added support for 3FR (Hasselblad raw images) files. MIME-Type was obtained
451
- by looking at exif data with exiftool. Thanks to cgat for these changes.
452
- {#27}[https://github.com/mime-types/ruby-mime-types/pull/27]
453
- * Updated MIME Types:
454
- * Pulled the latest updates from the IANA MIME-Type registry.
455
- * Added support for Ruby 2.0 with Travis CI.
456
-
457
- == 1.21 / 2013-02-09
458
-
459
- * New MIME Types:
460
- * Various new or updated MIME types by Garret Alfert:
461
- application/vnd.ms-fontobject, .eot; application/x-chrome-extension, .crx;
462
- application/x-web-app-manifest\+json, .webapp; application/x-xpinstall,
463
- .xpi; image/svg\+xml, .svg, .svgz; image/webp, .webp; text/cache-manifest,
464
- .appcache, .manifest.
465
- #{24}[https://github.com/mime-types/ruby-mime-types/pull/24]
466
- * Fixed some Manifest.txt related madness on Travis.
467
-
468
- == 1.20.1 / 2013-01-26
469
-
470
- * New MIME Types:
471
- * Apple iWork document types added by Hans de Graaff
472
- (application/x-iwork-keynote-sffkey, .key;
473
- application/x-iwork-pages-sffpages, .pages;
474
- application/x-iwork-numbers-sffnumbers, .numbers).
475
- {#20}[https://github.com/mime-types/ruby-mime-types/issue/20]
476
- * epub, ibooks, mobi, and DMG content types by Mauricio
477
- Linhares (mac:application/x-apple-diskimage, .dmg; application/epub\+zip,
478
- .epub; application/x-ibooks\+zip, .ibooks; application/x-mobipocket-ebook,
479
- .mobi). {#22}[https://github.com/mime-types/ruby-mime-types/issue/22]
480
- * rss content type by Garret Alfert (application/rss\+xml, .rss).
481
- {#23}[https://github.com/mime-types/ruby-mime-types/issue/23]
482
- * Added or updated MIME types from the latest IANA list.
483
- * Fixed MIME Types:
484
- * Excel macro-enabled spreadsheets had an incorrect extension. Thanks to
485
- Rafael Belvederese for reporting this issue.
486
- {#21}[https://github.com/mime-types/ruby-mime-types/issue/21]
487
- * Enabled for use with travis.
488
- * Enabled gem signing.
489
- * Fixed an error related to MIME type downloads.
490
- * This was previously published as 1.20, but I had forgotten some attributions.
491
-
492
- == 1.19 / 2012-06-20
493
- * New MIME Types:
494
- * XCF Gnome Images (image/x-xcf, image/x-compressed-xcf; .xcf).
495
- {#17}[https://github.com/mime-types/ruby-mime-types/issue/17]
496
- * Types reported in
497
- {#12}[https://github.com/mime-types/ruby-mime-types/issues/12]:
498
- * DV (video/x-dv; .dv)
499
- * IVF (video/x-ivf; .ivf)
500
- * Matroska (video/x-matroska; .mkv)
501
- * Motion JPEG (video/x-motion-jpeg; .mjpg)
502
- * RealMedia (official; application/vnd.rn-realmedia; .rm)
503
- * New extensions:
504
- * dcm (application/dicom);
505
- {#16}[https://github.com/mime-types/ruby-mime-types/issue/16].
506
- * Types reported in
507
- {#12}[https://github.com/mime-types/ruby-mime-types/issues/12]:
508
- * 3g2, 3gpp2 (video/3gpp2)
509
- * mpeg (video/mpeg)
510
- * mxf (application/mxf)
511
- * ts (video/MP2T)
512
- * ogg (video/ogg)
513
- * Fixed MIME Types:
514
- * Adobe AIR application installer packages was missing a hyphen.
515
- {#13}[https://github.com/mime-types/ruby-mime-types/issue/13]
516
- * Types reported in
517
- {#12}[https://github.com/mime-types/ruby-mime-types/issues/12]:
518
- * audio/x-pn-realaudio extension is .ra, not .rm.
519
- * Resolved {#8}[https://github.com/mime-types/ruby-mime-types/issues/8].
520
- Apparently some people run the tests on Linux. Imagine that.
521
-
522
- == 1.18 / 2012-03-20
523
- * New MIME Types:
524
- * Types reported in
525
- #{6}[https://github.com/mime-types/ruby-mime-types/issues/6]:
526
- * CoffeeScript (text/x-coffeescript; .coffee; 8bit).
527
- * AIR (application/vnd.adobe.air-applicationinstaller-package\+zip, .air; base64).
528
- * WOFF (application/font-woff; .woff; base64).
529
- * TrueType (application/x-font-truetype; .ttf; base64).
530
- * OpenType (application/x-font-opentype; .otf; base64).
531
- * WebM (audio/webm, video/webm; .webm).
532
- {#11}[https://github.com/mime-types/ruby-mime-types/issues/11.]
533
- * New extensions:
534
- * f4v/f4p (video/mp4, used by Adobe); f4a/fb4 (audio/mp4, used by Adobe).
535
- * Bug Fixes:
536
- * It was pointed out that Licence.txt was incorrectly named. Fixed by
537
- renaming to Licence.rdoc (from Issue/Pull Request
538
- {#8}[https://github.com/mime-types/ruby-mime-types/issues/8]).
539
- * It was pointed out that a plan to have the test output generated
540
- automatically never went through.
541
- {#10}[https://github.com/mime-types/ruby-mime-types/issues/10]
542
-
543
- == 1.17.2 / 2011-10-25
544
- * Bug Fixes:
545
- * Fixed an issue with Ruby 1.9 and file encoding.
546
-
547
- == 1.17.1 / 2011-10-23
548
- * Minor Enhancements:
549
- * Implemented modern 'hoe' semantics.
550
- * Switched to minitest instead of test/unit.
551
- * Converted documentation from .txt to .rdoc.
552
- * Removed setup.rb.
553
- {#3}[https://github.com/mime-types/ruby-mime-types/issues/3]
554
- * Should no longer complain about missing RubyGems keys
555
- {#2}[https://github.com/mime-types/ruby-mime-types/issues/2]
556
- * Added .mp4 and .mpg4 as recognized extensions for
557
- (application|audio|video)/mp4 per RFC4337.
558
- {#1}[https://github.com/mime-types/ruby-mime-types/issues/1]
559
- * Added audio/x-aac and .aac per RubyForge issue #28054.
560
- * Made it much easier to update MIME types from this point forward.
561
- * Updated MIME types from IANA.
562
-
563
- == 1.16
564
- * Made compatible with Ruby 1.8.6, 1.8.7, and 1.9.1.
565
- * Switched to the 'hoe' gem system and added a lot of build-time tools.
566
- * Updated the MIME types to the list based on the values in the Perl library
567
- version 1.27. Also updated based on external source information and bug
568
- reports.
569
- * This is the last planned version of MIME::Types 1.x. Work will be
570
- starting soon on MIME::Types 2.x with richer data querying mechanisms
571
- and support for external data sources.
572
-
573
- == 1.15
574
- * Removed lib/mime/type.rb to form a single MIME::Types database source. It
575
- is unlikely that one will ever need MIME::Type without MIME::Types.
576
- * Re-synchronized the MIME type list with the sources, focusing primarily on
577
- the IANA list.
578
- * Added more detailed source information for MIME::Type objects.
579
- * Changed MIME::Types from a module to a class with a default instance. There
580
- should be no difference in usage.
581
- * Removed MIME::Types::DATA_VERSION; it is now an attribute on the
582
- MIME::Types instance.
583
- * NOTE: Synchronization with the Perl version of MIME::Types is no longer a
584
- priority as of this release. The data format and information has changed.
585
- * Removed MIME::Types.by_suffix and MIME::Types.by_mediatype.
586
-
587
- == 1.13.1
588
- * Fixed a problem with the installer running tests. This now works.
589
- * Improved the implementation of MIME::Type.signature?
590
- * Moved code around to use the class << self idiom instead of always
591
- prepending the module/class name.
592
- * Added two new best-guess implementations of functions found in Perl's
593
- MIME::Types implementation (1.13). Do not rely on these until the purpose
594
- and implementation is stabilised.
595
- * Updated the MIME list to reflect changes noted by
596
- Ville Skyttä <ville.skytta@iki.fi>.
597
- * Added a new constant to MIME::Types, DATA_VERSION. This will allow the Ruby
598
- version number to be updated separately from the Perl version while keeping
599
- the MIME Type list version in sync.
600
-
601
- == 1.13
602
- ! WARNING: This version changes the API of MIME::Types !
603
- ! WARNING: This version is compatible with Ruby 1.8 and higher ONLY !
604
- * Removed dependency on InstallPackage; offering 1.13 as either .tar.gz or
605
- .gem.
606
- * Split into two files, mime/type.rb and mime/types.rb. This will make
607
- maintaining the list of changes easier.
608
- * Changed the MIME::Type construction API. Accepts only a single String
609
- argument (but does no named type-checking) and yields self.
610
- * Removed private methods #init_extensions, #init_encoding, and #init_system
611
- and replaced with #extensions=, #encoding=, and #system=.
612
- * Added #default_encoding to return 'quoted-printable' or 'base64' depending
613
- on the media type of the MIME type.
614
- * Added #raw_media_type and #raw_sub_type to provide the non-simplified
615
- versions of the media type and subtype.
616
- * Alternative constructors MIME::Type.from_array, MIME::Type.from_hash, and
617
- MIME::Type.from_mime_type added to compensate for the removal of named type
618
- checking in the original constructor.
619
- * Added #to_str, #to_a, and #to_hash methods. The latter two will provide
620
- output suitable for use in #from_array and #from_hash.
621
- * Removed "binary" encoding and enforced the use of a valid encoding string.
622
- * Added #system? returning true if the MIME::Type is an OS-specific
623
- MIME::Type.
624
- * Added #platform? returning true if the MIME::Type is an OS-specific
625
- MIME::Type for the current RUBY_PLATFORM.
626
- * Added #like? returning true if the simplified type matches the other value
627
- provided. #<'application/x-excel'>.like?('application/excel') is true.
628
- * Added #complete? returning true if the MIME::Type specifies an extension
629
- list.
630
- * Updated the MIME type list to reflect additions by Mark Overmeer for Perl's
631
- MIME::Types 1.12 and the official IANA list as of 2004.04.06. A number of
632
- formerly "registered" MIME types are now no longer registered (e.g.,
633
- application/excel is now application/x-excel). This ensures that the
634
- simplified type still works with applications, but does not report an
635
- unregistered type as registered.
636
- * Restored MIME type list to Mark Overmeer's format to facilitate easy
637
- exchange between the two projects.
638
- * Added additional unit tests from Mark Overmeer's 1.12 version.
639
-
640
- == 1.07
641
- * Changed version numbering to match Perl MIME::Types 1.07.
642
- * Re-synchronized with Mark Overmeer's list in Perl PMIME::Types 1.07.
643
- * [NN Poster] updated the attributes for the PGP types.
644
-
645
- == 1.005
646
- * Changed to Phil Thomson's InstallPackage.
647
- * Added several types from Perl MIME::Types 1.005.
648
- * Cleaned up data format; some data formats will show up with proper data now.
649
-
650
- == 1.004
651
- * Updated to match Perl MIME::Types 1.004, links credited to Dan Puro. Adds
652
- new reference list to http://www.indiana.edu/cgi-bin-local/mimetypes
653
- * Removed InvalidType and replaced with TypeError.
654
- * Changed instances of #type to #class.
655
- * Cleaned up how simplified versions are created.
656
-
657
- == 1.003
658
- * Initial release based on Perl MIME::Types 1.003.