challah 1.0.0.beta2 → 1.0.0.beta3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (968) hide show
  1. checksums.yaml +4 -4
  2. data/lib/challah/authorization.rb +13 -6
  3. data/lib/challah/user/providers.rb +3 -1
  4. data/lib/challah/version.rb +1 -1
  5. data/test/authorization_test.rb +15 -0
  6. data/test/user_test.rb +2 -1
  7. data/vendor/bundle/build_info/highline-1.6.18.info +1 -0
  8. data/vendor/bundle/build_info/mime-types-1.23.info +1 -0
  9. data/vendor/bundle/build_info/minitest-4.7.4.info +1 -0
  10. data/vendor/bundle/build_info/multi_json-1.7.3.info +1 -0
  11. data/vendor/bundle/build_info/rdiscount-2.0.7.3.info +1 -0
  12. data/vendor/bundle/build_info/shoulda-3.5.0.info +1 -0
  13. data/vendor/bundle/build_info/shoulda-matchers-2.1.0.info +1 -0
  14. data/vendor/bundle/build_info/tilt-1.4.1.info +1 -0
  15. data/vendor/bundle/build_info/yard-0.8.6.1.info +1 -0
  16. data/vendor/bundle/cache/highline-1.6.18.gem +0 -0
  17. data/vendor/bundle/cache/mime-types-1.23.gem +0 -0
  18. data/vendor/bundle/cache/minitest-4.7.4.gem +0 -0
  19. data/vendor/bundle/cache/multi_json-1.7.3.gem +0 -0
  20. data/vendor/bundle/cache/rdiscount-2.0.7.3.gem +0 -0
  21. data/vendor/bundle/cache/shoulda-3.5.0.gem +0 -0
  22. data/vendor/bundle/cache/shoulda-matchers-2.1.0.gem +0 -0
  23. data/vendor/bundle/cache/tilt-1.4.1.gem +0 -0
  24. data/vendor/bundle/cache/yard-0.8.6.1.gem +0 -0
  25. data/vendor/bundle/gems/highline-1.6.18/AUTHORS +3 -0
  26. data/vendor/bundle/gems/highline-1.6.18/CHANGELOG +342 -0
  27. data/vendor/bundle/gems/highline-1.6.18/COPYING +340 -0
  28. data/vendor/bundle/gems/highline-1.6.18/INSTALL +55 -0
  29. data/vendor/bundle/gems/highline-1.6.18/LICENSE +7 -0
  30. data/vendor/bundle/gems/highline-1.6.18/README.rdoc +63 -0
  31. data/vendor/bundle/gems/highline-1.6.18/Rakefile +50 -0
  32. data/vendor/bundle/gems/highline-1.6.18/TODO +6 -0
  33. data/vendor/bundle/gems/highline-1.6.18/examples/ansi_colors.rb +38 -0
  34. data/vendor/bundle/gems/highline-1.6.18/examples/asking_for_arrays.rb +18 -0
  35. data/vendor/bundle/gems/highline-1.6.18/examples/basic_usage.rb +75 -0
  36. data/vendor/bundle/gems/highline-1.6.18/examples/color_scheme.rb +32 -0
  37. data/vendor/bundle/gems/highline-1.6.18/examples/get_character.rb +12 -0
  38. data/vendor/bundle/gems/highline-1.6.18/examples/limit.rb +12 -0
  39. data/vendor/bundle/gems/highline-1.6.18/examples/menus.rb +65 -0
  40. data/vendor/bundle/gems/highline-1.6.18/examples/overwrite.rb +19 -0
  41. data/vendor/bundle/gems/highline-1.6.18/examples/page_and_wrap.rb +322 -0
  42. data/vendor/bundle/gems/highline-1.6.18/examples/password.rb +7 -0
  43. data/vendor/bundle/gems/highline-1.6.18/examples/repeat_entry.rb +21 -0
  44. data/vendor/bundle/gems/highline-1.6.18/examples/trapping_eof.rb +22 -0
  45. data/vendor/bundle/gems/highline-1.6.18/examples/using_readline.rb +17 -0
  46. data/vendor/bundle/gems/highline-1.6.18/highline.gemspec +37 -0
  47. data/vendor/bundle/gems/highline-1.6.18/lib/highline/color_scheme.rb +134 -0
  48. data/vendor/bundle/gems/highline-1.6.18/lib/highline/compatibility.rb +16 -0
  49. data/vendor/bundle/gems/highline-1.6.18/lib/highline/import.rb +41 -0
  50. data/vendor/bundle/gems/highline-1.6.18/lib/highline/menu.rb +398 -0
  51. data/vendor/bundle/gems/highline-1.6.18/lib/highline/question.rb +475 -0
  52. data/vendor/bundle/gems/highline-1.6.18/lib/highline/simulate.rb +48 -0
  53. data/vendor/bundle/gems/highline-1.6.18/lib/highline/string_extensions.rb +131 -0
  54. data/vendor/bundle/gems/highline-1.6.18/lib/highline/style.rb +181 -0
  55. data/vendor/bundle/gems/highline-1.6.18/lib/highline/system_extensions.rb +218 -0
  56. data/vendor/bundle/gems/highline-1.6.18/lib/highline.rb +1012 -0
  57. data/vendor/bundle/gems/highline-1.6.18/setup.rb +1360 -0
  58. data/vendor/bundle/gems/highline-1.6.18/site/highline.css +65 -0
  59. data/vendor/bundle/gems/highline-1.6.18/site/images/logo.png +0 -0
  60. data/vendor/bundle/gems/highline-1.6.18/site/index.html +58 -0
  61. data/vendor/bundle/gems/highline-1.6.18/test/string_methods.rb +32 -0
  62. data/vendor/bundle/gems/highline-1.6.18/test/tc_color_scheme.rb +96 -0
  63. data/vendor/bundle/gems/highline-1.6.18/test/tc_highline.rb +1123 -0
  64. data/vendor/bundle/gems/highline-1.6.18/test/tc_import.rb +52 -0
  65. data/vendor/bundle/gems/highline-1.6.18/test/tc_menu.rb +439 -0
  66. data/vendor/bundle/gems/highline-1.6.18/test/tc_string_extension.rb +20 -0
  67. data/vendor/bundle/gems/highline-1.6.18/test/tc_string_highline.rb +38 -0
  68. data/vendor/bundle/gems/highline-1.6.18/test/tc_style.rb +567 -0
  69. data/vendor/bundle/gems/highline-1.6.18/test/ts_all.rb +16 -0
  70. data/vendor/bundle/gems/mime-types-1.23/Contributing.rdoc +68 -0
  71. data/vendor/bundle/gems/mime-types-1.23/Gemfile +21 -0
  72. data/vendor/bundle/gems/mime-types-1.23/History.rdoc +215 -0
  73. data/vendor/bundle/gems/mime-types-1.23/Licence.rdoc +37 -0
  74. data/vendor/bundle/gems/mime-types-1.23/Manifest.txt +40 -0
  75. data/vendor/bundle/gems/mime-types-1.23/README.rdoc +63 -0
  76. data/vendor/bundle/gems/mime-types-1.23/Rakefile +206 -0
  77. data/vendor/bundle/gems/mime-types-1.23/docs/COPYING.txt +339 -0
  78. data/vendor/bundle/gems/mime-types-1.23/docs/artistic.txt +127 -0
  79. data/vendor/bundle/gems/mime-types-1.23/lib/mime/types/application +1002 -0
  80. data/vendor/bundle/gems/mime-types-1.23/lib/mime/types/application.mac +3 -0
  81. data/vendor/bundle/gems/mime-types-1.23/lib/mime/types/application.nonstandard +131 -0
  82. data/vendor/bundle/gems/mime-types-1.23/lib/mime/types/application.obsolete +41 -0
  83. data/vendor/bundle/gems/mime-types-1.23/lib/mime/types/audio +138 -0
  84. data/vendor/bundle/gems/mime-types-1.23/lib/mime/types/audio.nonstandard +11 -0
  85. data/vendor/bundle/gems/mime-types-1.23/lib/mime/types/audio.obsolete +1 -0
  86. data/vendor/bundle/gems/mime-types-1.23/lib/mime/types/image +46 -0
  87. data/vendor/bundle/gems/mime-types-1.23/lib/mime/types/image.nonstandard +20 -0
  88. data/vendor/bundle/gems/mime-types-1.23/lib/mime/types/image.obsolete +5 -0
  89. data/vendor/bundle/gems/mime-types-1.23/lib/mime/types/message +18 -0
  90. data/vendor/bundle/gems/mime-types-1.23/lib/mime/types/message.obsolete +2 -0
  91. data/vendor/bundle/gems/mime-types-1.23/lib/mime/types/model +15 -0
  92. data/vendor/bundle/gems/mime-types-1.23/lib/mime/types/multipart +14 -0
  93. data/vendor/bundle/gems/mime-types-1.23/lib/mime/types/multipart.nonstandard +1 -0
  94. data/vendor/bundle/gems/mime-types-1.23/lib/mime/types/multipart.obsolete +7 -0
  95. data/vendor/bundle/gems/mime-types-1.23/lib/mime/types/other.nonstandard +8 -0
  96. data/vendor/bundle/gems/mime-types-1.23/lib/mime/types/text +61 -0
  97. data/vendor/bundle/gems/mime-types-1.23/lib/mime/types/text.nonstandard +7 -0
  98. data/vendor/bundle/gems/mime-types-1.23/lib/mime/types/text.obsolete +8 -0
  99. data/vendor/bundle/gems/mime-types-1.23/lib/mime/types/text.vms +1 -0
  100. data/vendor/bundle/gems/mime-types-1.23/lib/mime/types/video +73 -0
  101. data/vendor/bundle/gems/mime-types-1.23/lib/mime/types/video.nonstandard +16 -0
  102. data/vendor/bundle/gems/mime-types-1.23/lib/mime/types/video.obsolete +3 -0
  103. data/vendor/bundle/gems/mime-types-1.23/lib/mime/types.rb +881 -0
  104. data/vendor/bundle/gems/mime-types-1.23/lib/mime-types.rb +3 -0
  105. data/vendor/bundle/gems/mime-types-1.23/test/test_mime_type.rb +319 -0
  106. data/vendor/bundle/gems/mime-types-1.23/test/test_mime_types.rb +119 -0
  107. data/vendor/bundle/gems/minitest-4.7.4/History.txt +796 -0
  108. data/vendor/bundle/gems/minitest-4.7.4/Manifest.txt +20 -0
  109. data/vendor/bundle/gems/minitest-4.7.4/README.txt +457 -0
  110. data/vendor/bundle/gems/minitest-4.7.4/Rakefile +94 -0
  111. data/vendor/bundle/gems/minitest-4.7.4/design_rationale.rb +52 -0
  112. data/vendor/bundle/gems/minitest-4.7.4/lib/hoe/minitest.rb +22 -0
  113. data/vendor/bundle/gems/minitest-4.7.4/lib/minitest/autorun.rb +12 -0
  114. data/vendor/bundle/gems/minitest-4.7.4/lib/minitest/benchmark.rb +416 -0
  115. data/vendor/bundle/gems/minitest-4.7.4/lib/minitest/hell.rb +13 -0
  116. data/vendor/bundle/gems/minitest-4.7.4/lib/minitest/mock.rb +193 -0
  117. data/vendor/bundle/gems/minitest-4.7.4/lib/minitest/parallel_each.rb +73 -0
  118. data/vendor/bundle/gems/minitest-4.7.4/lib/minitest/pride.rb +112 -0
  119. data/vendor/bundle/gems/minitest-4.7.4/lib/minitest/spec.rb +545 -0
  120. data/vendor/bundle/gems/minitest-4.7.4/lib/minitest/unit.rb +1415 -0
  121. data/vendor/bundle/gems/minitest-4.7.4/test/minitest/metametameta.rb +67 -0
  122. data/vendor/bundle/gems/minitest-4.7.4/test/minitest/test_minitest_benchmark.rb +128 -0
  123. data/vendor/bundle/gems/minitest-4.7.4/test/minitest/test_minitest_mock.rb +403 -0
  124. data/vendor/bundle/gems/minitest-4.7.4/test/minitest/test_minitest_spec.rb +804 -0
  125. data/vendor/bundle/gems/minitest-4.7.4/test/minitest/test_minitest_unit.rb +1860 -0
  126. data/vendor/bundle/gems/multi_json-1.7.3/CHANGELOG.md +147 -0
  127. data/vendor/bundle/gems/multi_json-1.7.3/CONTRIBUTING.md +46 -0
  128. data/vendor/bundle/gems/multi_json-1.7.3/Gemfile +31 -0
  129. data/vendor/bundle/gems/multi_json-1.7.3/LICENSE.md +20 -0
  130. data/vendor/bundle/gems/multi_json-1.7.3/README.md +109 -0
  131. data/vendor/bundle/gems/multi_json-1.7.3/Rakefile +12 -0
  132. data/vendor/bundle/gems/multi_json-1.7.3/lib/multi_json/adapter.rb +43 -0
  133. data/vendor/bundle/gems/multi_json-1.7.3/lib/multi_json/adapters/gson.rb +19 -0
  134. data/vendor/bundle/gems/multi_json-1.7.3/lib/multi_json/adapters/jr_jackson.rb +19 -0
  135. data/vendor/bundle/gems/multi_json-1.7.3/lib/multi_json/adapters/json_common.rb +35 -0
  136. data/vendor/bundle/gems/multi_json-1.7.3/lib/multi_json/adapters/json_gem.rb +15 -0
  137. data/vendor/bundle/gems/multi_json-1.7.3/lib/multi_json/adapters/json_pure.rb +15 -0
  138. data/vendor/bundle/gems/multi_json-1.7.3/lib/multi_json/adapters/nsjsonserialization.rb +34 -0
  139. data/vendor/bundle/gems/multi_json-1.7.3/lib/multi_json/adapters/oj.rb +28 -0
  140. data/vendor/bundle/gems/multi_json-1.7.3/lib/multi_json/adapters/ok_json.rb +22 -0
  141. data/vendor/bundle/gems/multi_json-1.7.3/lib/multi_json/adapters/yajl.rb +19 -0
  142. data/vendor/bundle/gems/multi_json-1.7.3/lib/multi_json/convertible_hash_keys.rb +43 -0
  143. data/vendor/bundle/gems/multi_json-1.7.3/lib/multi_json/options.rb +39 -0
  144. data/vendor/bundle/gems/multi_json-1.7.3/lib/multi_json/vendor/okjson.rb +600 -0
  145. data/vendor/bundle/gems/multi_json-1.7.3/lib/multi_json/version.rb +3 -0
  146. data/vendor/bundle/gems/multi_json-1.7.3/lib/multi_json.rb +154 -0
  147. data/vendor/bundle/gems/multi_json-1.7.3/multi_json.gemspec +22 -0
  148. data/vendor/bundle/gems/multi_json-1.7.3/spec/adapter_shared_example.rb +235 -0
  149. data/vendor/bundle/gems/multi_json-1.7.3/spec/has_options.rb +74 -0
  150. data/vendor/bundle/gems/multi_json-1.7.3/spec/helper.rb +32 -0
  151. data/vendor/bundle/gems/multi_json-1.7.3/spec/json_common_shared_example.rb +30 -0
  152. data/vendor/bundle/gems/multi_json-1.7.3/spec/multi_json_spec.rb +224 -0
  153. data/vendor/bundle/gems/rdiscount-2.0.7.3/BUILDING +142 -0
  154. data/vendor/bundle/gems/rdiscount-2.0.7.3/COPYING +52 -0
  155. data/vendor/bundle/gems/rdiscount-2.0.7.3/README.markdown +72 -0
  156. data/vendor/bundle/gems/rdiscount-2.0.7.3/Rakefile +218 -0
  157. data/vendor/bundle/gems/rdiscount-2.0.7.3/bin/rdiscount +13 -0
  158. data/vendor/bundle/gems/rdiscount-2.0.7.3/ext/Csio.c +61 -0
  159. data/vendor/bundle/gems/rdiscount-2.0.7.3/ext/Csio.o +0 -0
  160. data/vendor/bundle/gems/rdiscount-2.0.7.3/ext/Makefile +237 -0
  161. data/vendor/bundle/gems/rdiscount-2.0.7.3/ext/VERSION +1 -0
  162. data/vendor/bundle/gems/rdiscount-2.0.7.3/ext/amalloc.c +111 -0
  163. data/vendor/bundle/gems/rdiscount-2.0.7.3/ext/amalloc.h +29 -0
  164. data/vendor/bundle/gems/rdiscount-2.0.7.3/ext/amalloc.o +0 -0
  165. data/vendor/bundle/gems/rdiscount-2.0.7.3/ext/basename.c +43 -0
  166. data/vendor/bundle/gems/rdiscount-2.0.7.3/ext/basename.o +0 -0
  167. data/vendor/bundle/gems/rdiscount-2.0.7.3/ext/config.h +25 -0
  168. data/vendor/bundle/gems/rdiscount-2.0.7.3/ext/css.c +85 -0
  169. data/vendor/bundle/gems/rdiscount-2.0.7.3/ext/css.o +0 -0
  170. data/vendor/bundle/gems/rdiscount-2.0.7.3/ext/cstring.h +77 -0
  171. data/vendor/bundle/gems/rdiscount-2.0.7.3/ext/docheader.c +49 -0
  172. data/vendor/bundle/gems/rdiscount-2.0.7.3/ext/docheader.o +0 -0
  173. data/vendor/bundle/gems/rdiscount-2.0.7.3/ext/dumptree.c +152 -0
  174. data/vendor/bundle/gems/rdiscount-2.0.7.3/ext/dumptree.o +0 -0
  175. data/vendor/bundle/gems/rdiscount-2.0.7.3/ext/emmatch.c +188 -0
  176. data/vendor/bundle/gems/rdiscount-2.0.7.3/ext/emmatch.o +0 -0
  177. data/vendor/bundle/gems/rdiscount-2.0.7.3/ext/extconf.rb +37 -0
  178. data/vendor/bundle/gems/rdiscount-2.0.7.3/ext/flags.c +84 -0
  179. data/vendor/bundle/gems/rdiscount-2.0.7.3/ext/flags.o +0 -0
  180. data/vendor/bundle/gems/rdiscount-2.0.7.3/ext/generate.c +1717 -0
  181. data/vendor/bundle/gems/rdiscount-2.0.7.3/ext/generate.o +0 -0
  182. data/vendor/bundle/gems/rdiscount-2.0.7.3/ext/html5.c +24 -0
  183. data/vendor/bundle/gems/rdiscount-2.0.7.3/ext/html5.o +0 -0
  184. data/vendor/bundle/gems/rdiscount-2.0.7.3/ext/markdown.c +1227 -0
  185. data/vendor/bundle/gems/rdiscount-2.0.7.3/ext/markdown.h +181 -0
  186. data/vendor/bundle/gems/rdiscount-2.0.7.3/ext/markdown.o +0 -0
  187. data/vendor/bundle/gems/rdiscount-2.0.7.3/ext/mkdio.c +354 -0
  188. data/vendor/bundle/gems/rdiscount-2.0.7.3/ext/mkdio.h +108 -0
  189. data/vendor/bundle/gems/rdiscount-2.0.7.3/ext/mkdio.o +0 -0
  190. data/vendor/bundle/gems/rdiscount-2.0.7.3/ext/mkmf.log +191 -0
  191. data/vendor/bundle/gems/rdiscount-2.0.7.3/ext/rdiscount.bundle +0 -0
  192. data/vendor/bundle/gems/rdiscount-2.0.7.3/ext/rdiscount.c +147 -0
  193. data/vendor/bundle/gems/rdiscount-2.0.7.3/ext/rdiscount.o +0 -0
  194. data/vendor/bundle/gems/rdiscount-2.0.7.3/ext/resource.c +157 -0
  195. data/vendor/bundle/gems/rdiscount-2.0.7.3/ext/resource.o +0 -0
  196. data/vendor/bundle/gems/rdiscount-2.0.7.3/ext/ruby-config.h +10 -0
  197. data/vendor/bundle/gems/rdiscount-2.0.7.3/ext/setup.c +47 -0
  198. data/vendor/bundle/gems/rdiscount-2.0.7.3/ext/setup.o +0 -0
  199. data/vendor/bundle/gems/rdiscount-2.0.7.3/ext/siteconf20130510-69347-e72tzr.rb +6 -0
  200. data/vendor/bundle/gems/rdiscount-2.0.7.3/ext/tags.c +123 -0
  201. data/vendor/bundle/gems/rdiscount-2.0.7.3/ext/tags.h +19 -0
  202. data/vendor/bundle/gems/rdiscount-2.0.7.3/ext/tags.o +0 -0
  203. data/vendor/bundle/gems/rdiscount-2.0.7.3/ext/toc.c +103 -0
  204. data/vendor/bundle/gems/rdiscount-2.0.7.3/ext/toc.o +0 -0
  205. data/vendor/bundle/gems/rdiscount-2.0.7.3/ext/version.c +22 -0
  206. data/vendor/bundle/gems/rdiscount-2.0.7.3/ext/version.o +0 -0
  207. data/vendor/bundle/gems/rdiscount-2.0.7.3/ext/xml.c +82 -0
  208. data/vendor/bundle/gems/rdiscount-2.0.7.3/ext/xml.o +0 -0
  209. data/vendor/bundle/gems/rdiscount-2.0.7.3/ext/xmlpage.c +48 -0
  210. data/vendor/bundle/gems/rdiscount-2.0.7.3/ext/xmlpage.o +0 -0
  211. data/vendor/bundle/gems/rdiscount-2.0.7.3/lib/markdown.rb +1 -0
  212. data/vendor/bundle/gems/rdiscount-2.0.7.3/lib/rdiscount.bundle +0 -0
  213. data/vendor/bundle/gems/rdiscount-2.0.7.3/lib/rdiscount.rb +100 -0
  214. data/vendor/bundle/gems/rdiscount-2.0.7.3/man/markdown.7 +1020 -0
  215. data/vendor/bundle/gems/rdiscount-2.0.7.3/man/rdiscount.1 +22 -0
  216. data/vendor/bundle/gems/rdiscount-2.0.7.3/man/rdiscount.1.ronn +24 -0
  217. data/vendor/bundle/gems/rdiscount-2.0.7.3/rdiscount.gemspec +65 -0
  218. data/vendor/bundle/gems/rdiscount-2.0.7.3/test/benchmark.rb +56 -0
  219. data/vendor/bundle/gems/rdiscount-2.0.7.3/test/benchmark.txt +306 -0
  220. data/vendor/bundle/gems/rdiscount-2.0.7.3/test/markdown_test.rb +158 -0
  221. data/vendor/bundle/gems/rdiscount-2.0.7.3/test/rdiscount_test.rb +132 -0
  222. data/vendor/bundle/gems/shoulda-3.5.0/Appraisals +15 -0
  223. data/vendor/bundle/gems/shoulda-3.5.0/CONTRIBUTING.md +38 -0
  224. data/vendor/bundle/gems/shoulda-3.5.0/Gemfile +3 -0
  225. data/vendor/bundle/gems/shoulda-3.5.0/MIT-LICENSE +22 -0
  226. data/vendor/bundle/gems/shoulda-3.5.0/README.md +103 -0
  227. data/vendor/bundle/gems/shoulda-3.5.0/Rakefile +17 -0
  228. data/vendor/bundle/gems/shoulda-3.5.0/features/rails_integration.feature +87 -0
  229. data/vendor/bundle/gems/shoulda-3.5.0/features/step_definitions/rails_steps.rb +77 -0
  230. data/vendor/bundle/gems/shoulda-3.5.0/features/support/env.rb +14 -0
  231. data/vendor/bundle/gems/shoulda-3.5.0/gemfiles/3.0.gemfile +7 -0
  232. data/vendor/bundle/gems/shoulda-3.5.0/gemfiles/3.0.gemfile.lock +127 -0
  233. data/vendor/bundle/gems/shoulda-3.5.0/gemfiles/3.1.gemfile +9 -0
  234. data/vendor/bundle/gems/shoulda-3.5.0/gemfiles/3.1.gemfile.lock +148 -0
  235. data/vendor/bundle/gems/shoulda-3.5.0/gemfiles/3.2.gemfile +9 -0
  236. data/vendor/bundle/gems/shoulda-3.5.0/gemfiles/3.2.gemfile.lock +146 -0
  237. data/vendor/bundle/gems/shoulda-3.5.0/lib/shoulda/version.rb +3 -0
  238. data/vendor/bundle/gems/shoulda-3.5.0/lib/shoulda.rb +3 -0
  239. data/vendor/bundle/gems/shoulda-3.5.0/shoulda.gemspec +30 -0
  240. data/vendor/bundle/gems/shoulda-matchers-2.1.0/Appraisals +17 -0
  241. data/vendor/bundle/gems/shoulda-matchers-2.1.0/CONTRIBUTING.md +41 -0
  242. data/vendor/bundle/gems/shoulda-matchers-2.1.0/Gemfile +15 -0
  243. data/vendor/bundle/gems/shoulda-matchers-2.1.0/Gemfile.lock +148 -0
  244. data/vendor/bundle/gems/shoulda-matchers-2.1.0/MIT-LICENSE +22 -0
  245. data/vendor/bundle/gems/shoulda-matchers-2.1.0/NEWS.md +181 -0
  246. data/vendor/bundle/gems/shoulda-matchers-2.1.0/README.md +93 -0
  247. data/vendor/bundle/gems/shoulda-matchers-2.1.0/Rakefile +28 -0
  248. data/vendor/bundle/gems/shoulda-matchers-2.1.0/features/rails_integration.feature +114 -0
  249. data/vendor/bundle/gems/shoulda-matchers-2.1.0/features/step_definitions/rails_steps.rb +130 -0
  250. data/vendor/bundle/gems/shoulda-matchers-2.1.0/features/support/env.rb +5 -0
  251. data/vendor/bundle/gems/shoulda-matchers-2.1.0/gemfiles/3.0.gemfile +14 -0
  252. data/vendor/bundle/gems/shoulda-matchers-2.1.0/gemfiles/3.0.gemfile.lock +139 -0
  253. data/vendor/bundle/gems/shoulda-matchers-2.1.0/gemfiles/3.1.gemfile +16 -0
  254. data/vendor/bundle/gems/shoulda-matchers-2.1.0/gemfiles/3.1.gemfile.lock +160 -0
  255. data/vendor/bundle/gems/shoulda-matchers-2.1.0/gemfiles/3.2.gemfile +16 -0
  256. data/vendor/bundle/gems/shoulda-matchers-2.1.0/gemfiles/3.2.gemfile.lock +158 -0
  257. data/vendor/bundle/gems/shoulda-matchers-2.1.0/lib/shoulda/matchers/action_controller/filter_param_matcher.rb +46 -0
  258. data/vendor/bundle/gems/shoulda-matchers-2.1.0/lib/shoulda/matchers/action_controller/redirect_to_matcher.rb +65 -0
  259. data/vendor/bundle/gems/shoulda-matchers-2.1.0/lib/shoulda/matchers/action_controller/render_template_matcher.rb +61 -0
  260. data/vendor/bundle/gems/shoulda-matchers-2.1.0/lib/shoulda/matchers/action_controller/render_with_layout_matcher.rb +94 -0
  261. data/vendor/bundle/gems/shoulda-matchers-2.1.0/lib/shoulda/matchers/action_controller/respond_with_matcher.rb +83 -0
  262. data/vendor/bundle/gems/shoulda-matchers-2.1.0/lib/shoulda/matchers/action_controller/route_matcher.rb +96 -0
  263. data/vendor/bundle/gems/shoulda-matchers-2.1.0/lib/shoulda/matchers/action_controller/set_session_matcher.rb +105 -0
  264. data/vendor/bundle/gems/shoulda-matchers-2.1.0/lib/shoulda/matchers/action_controller/set_the_flash_matcher.rb +147 -0
  265. data/vendor/bundle/gems/shoulda-matchers-2.1.0/lib/shoulda/matchers/action_controller.rb +35 -0
  266. data/vendor/bundle/gems/shoulda-matchers-2.1.0/lib/shoulda/matchers/active_model/allow_mass_assignment_of_matcher.rb +113 -0
  267. data/vendor/bundle/gems/shoulda-matchers-2.1.0/lib/shoulda/matchers/active_model/allow_value_matcher.rb +174 -0
  268. data/vendor/bundle/gems/shoulda-matchers-2.1.0/lib/shoulda/matchers/active_model/disallow_value_matcher.rb +42 -0
  269. data/vendor/bundle/gems/shoulda-matchers-2.1.0/lib/shoulda/matchers/active_model/ensure_exclusion_of_matcher.rb +94 -0
  270. data/vendor/bundle/gems/shoulda-matchers-2.1.0/lib/shoulda/matchers/active_model/ensure_inclusion_of_matcher.rb +156 -0
  271. data/vendor/bundle/gems/shoulda-matchers-2.1.0/lib/shoulda/matchers/active_model/ensure_length_of_matcher.rb +176 -0
  272. data/vendor/bundle/gems/shoulda-matchers-2.1.0/lib/shoulda/matchers/active_model/errors.rb +7 -0
  273. data/vendor/bundle/gems/shoulda-matchers-2.1.0/lib/shoulda/matchers/active_model/exception_message_finder.rb +58 -0
  274. data/vendor/bundle/gems/shoulda-matchers-2.1.0/lib/shoulda/matchers/active_model/helpers.rb +45 -0
  275. data/vendor/bundle/gems/shoulda-matchers-2.1.0/lib/shoulda/matchers/active_model/odd_even_number_matcher.rb +47 -0
  276. data/vendor/bundle/gems/shoulda-matchers-2.1.0/lib/shoulda/matchers/active_model/only_integer_matcher.rb +37 -0
  277. data/vendor/bundle/gems/shoulda-matchers-2.1.0/lib/shoulda/matchers/active_model/validate_acceptance_of_matcher.rb +41 -0
  278. data/vendor/bundle/gems/shoulda-matchers-2.1.0/lib/shoulda/matchers/active_model/validate_confirmation_of_matcher.rb +65 -0
  279. data/vendor/bundle/gems/shoulda-matchers-2.1.0/lib/shoulda/matchers/active_model/validate_numericality_of_matcher.rb +115 -0
  280. data/vendor/bundle/gems/shoulda-matchers-2.1.0/lib/shoulda/matchers/active_model/validate_presence_of_matcher.rb +64 -0
  281. data/vendor/bundle/gems/shoulda-matchers-2.1.0/lib/shoulda/matchers/active_model/validate_uniqueness_of_matcher.rb +221 -0
  282. data/vendor/bundle/gems/shoulda-matchers-2.1.0/lib/shoulda/matchers/active_model/validation_matcher.rb +89 -0
  283. data/vendor/bundle/gems/shoulda-matchers-2.1.0/lib/shoulda/matchers/active_model/validation_message_finder.rb +70 -0
  284. data/vendor/bundle/gems/shoulda-matchers-2.1.0/lib/shoulda/matchers/active_model.rb +50 -0
  285. data/vendor/bundle/gems/shoulda-matchers-2.1.0/lib/shoulda/matchers/active_record/accept_nested_attributes_for_matcher.rb +140 -0
  286. data/vendor/bundle/gems/shoulda-matchers-2.1.0/lib/shoulda/matchers/active_record/association_matcher.rb +368 -0
  287. data/vendor/bundle/gems/shoulda-matchers-2.1.0/lib/shoulda/matchers/active_record/have_db_column_matcher.rb +195 -0
  288. data/vendor/bundle/gems/shoulda-matchers-2.1.0/lib/shoulda/matchers/active_record/have_db_index_matcher.rb +111 -0
  289. data/vendor/bundle/gems/shoulda-matchers-2.1.0/lib/shoulda/matchers/active_record/have_readonly_attribute_matcher.rb +55 -0
  290. data/vendor/bundle/gems/shoulda-matchers-2.1.0/lib/shoulda/matchers/active_record/serialize_matcher.rb +112 -0
  291. data/vendor/bundle/gems/shoulda-matchers-2.1.0/lib/shoulda/matchers/active_record.rb +25 -0
  292. data/vendor/bundle/gems/shoulda-matchers-2.1.0/lib/shoulda/matchers/assertion_error.rb +16 -0
  293. data/vendor/bundle/gems/shoulda-matchers-2.1.0/lib/shoulda/matchers/integrations/rspec.rb +20 -0
  294. data/vendor/bundle/gems/shoulda-matchers-2.1.0/lib/shoulda/matchers/integrations/test_unit.rb +42 -0
  295. data/vendor/bundle/gems/shoulda-matchers-2.1.0/lib/shoulda/matchers/version.rb +5 -0
  296. data/vendor/bundle/gems/shoulda-matchers-2.1.0/lib/shoulda/matchers.rb +8 -0
  297. data/vendor/bundle/gems/shoulda-matchers-2.1.0/lib/shoulda-matchers.rb +1 -0
  298. data/vendor/bundle/gems/shoulda-matchers-2.1.0/shoulda-matchers.gemspec +33 -0
  299. data/vendor/bundle/gems/shoulda-matchers-2.1.0/spec/shoulda/active_model/validate_uniqueness_of_matcher_spec.rb +195 -0
  300. data/vendor/bundle/gems/shoulda-matchers-2.1.0/spec/shoulda/matchers/action_controller/filter_param_matcher_spec.rb +22 -0
  301. data/vendor/bundle/gems/shoulda-matchers-2.1.0/spec/shoulda/matchers/action_controller/redirect_to_matcher_spec.rb +42 -0
  302. data/vendor/bundle/gems/shoulda-matchers-2.1.0/spec/shoulda/matchers/action_controller/render_template_matcher_spec.rb +78 -0
  303. data/vendor/bundle/gems/shoulda-matchers-2.1.0/spec/shoulda/matchers/action_controller/render_with_layout_matcher_spec.rb +58 -0
  304. data/vendor/bundle/gems/shoulda-matchers-2.1.0/spec/shoulda/matchers/action_controller/respond_with_matcher_spec.rb +31 -0
  305. data/vendor/bundle/gems/shoulda-matchers-2.1.0/spec/shoulda/matchers/action_controller/route_matcher_spec.rb +65 -0
  306. data/vendor/bundle/gems/shoulda-matchers-2.1.0/spec/shoulda/matchers/action_controller/set_session_matcher_spec.rb +51 -0
  307. data/vendor/bundle/gems/shoulda-matchers-2.1.0/spec/shoulda/matchers/action_controller/set_the_flash_matcher_spec.rb +153 -0
  308. data/vendor/bundle/gems/shoulda-matchers-2.1.0/spec/shoulda/matchers/active_model/allow_mass_assignment_of_matcher_spec.rb +111 -0
  309. data/vendor/bundle/gems/shoulda-matchers-2.1.0/spec/shoulda/matchers/active_model/allow_value_matcher_spec.rb +146 -0
  310. data/vendor/bundle/gems/shoulda-matchers-2.1.0/spec/shoulda/matchers/active_model/disallow_value_matcher_spec.rb +43 -0
  311. data/vendor/bundle/gems/shoulda-matchers-2.1.0/spec/shoulda/matchers/active_model/ensure_exclusion_of_matcher_spec.rb +95 -0
  312. data/vendor/bundle/gems/shoulda-matchers-2.1.0/spec/shoulda/matchers/active_model/ensure_inclusion_of_matcher_spec.rb +194 -0
  313. data/vendor/bundle/gems/shoulda-matchers-2.1.0/spec/shoulda/matchers/active_model/ensure_length_of_matcher_spec.rb +159 -0
  314. data/vendor/bundle/gems/shoulda-matchers-2.1.0/spec/shoulda/matchers/active_model/exception_message_finder_spec.rb +112 -0
  315. data/vendor/bundle/gems/shoulda-matchers-2.1.0/spec/shoulda/matchers/active_model/helpers_spec.rb +158 -0
  316. data/vendor/bundle/gems/shoulda-matchers-2.1.0/spec/shoulda/matchers/active_model/odd_even_number_matcher_spec.rb +93 -0
  317. data/vendor/bundle/gems/shoulda-matchers-2.1.0/spec/shoulda/matchers/active_model/only_integer_matcher_spec.rb +52 -0
  318. data/vendor/bundle/gems/shoulda-matchers-2.1.0/spec/shoulda/matchers/active_model/validate_acceptance_of_matcher_spec.rb +41 -0
  319. data/vendor/bundle/gems/shoulda-matchers-2.1.0/spec/shoulda/matchers/active_model/validate_confirmation_of_matcher_spec.rb +47 -0
  320. data/vendor/bundle/gems/shoulda-matchers-2.1.0/spec/shoulda/matchers/active_model/validate_numericality_of_matcher_spec.rb +133 -0
  321. data/vendor/bundle/gems/shoulda-matchers-2.1.0/spec/shoulda/matchers/active_model/validate_presence_of_matcher_spec.rb +143 -0
  322. data/vendor/bundle/gems/shoulda-matchers-2.1.0/spec/shoulda/matchers/active_model/validate_uniqueness_of_matcher_spec.rb +212 -0
  323. data/vendor/bundle/gems/shoulda-matchers-2.1.0/spec/shoulda/matchers/active_model/validation_message_finder_spec.rb +119 -0
  324. data/vendor/bundle/gems/shoulda-matchers-2.1.0/spec/shoulda/matchers/active_record/accept_nested_attributes_for_matcher_spec.rb +106 -0
  325. data/vendor/bundle/gems/shoulda-matchers-2.1.0/spec/shoulda/matchers/active_record/association_matcher_spec.rb +606 -0
  326. data/vendor/bundle/gems/shoulda-matchers-2.1.0/spec/shoulda/matchers/active_record/have_db_column_matcher_spec.rb +111 -0
  327. data/vendor/bundle/gems/shoulda-matchers-2.1.0/spec/shoulda/matchers/active_record/have_db_index_matcher_spec.rb +78 -0
  328. data/vendor/bundle/gems/shoulda-matchers-2.1.0/spec/shoulda/matchers/active_record/have_readonly_attributes_matcher_spec.rb +41 -0
  329. data/vendor/bundle/gems/shoulda-matchers-2.1.0/spec/shoulda/matchers/active_record/serialize_matcher_spec.rb +86 -0
  330. data/vendor/bundle/gems/shoulda-matchers-2.1.0/spec/spec_helper.rb +28 -0
  331. data/vendor/bundle/gems/shoulda-matchers-2.1.0/spec/support/active_model_versions.rb +13 -0
  332. data/vendor/bundle/gems/shoulda-matchers-2.1.0/spec/support/activemodel_helpers.rb +19 -0
  333. data/vendor/bundle/gems/shoulda-matchers-2.1.0/spec/support/class_builder.rb +42 -0
  334. data/vendor/bundle/gems/shoulda-matchers-2.1.0/spec/support/controller_builder.rb +80 -0
  335. data/vendor/bundle/gems/shoulda-matchers-2.1.0/spec/support/i18n_faker.rb +10 -0
  336. data/vendor/bundle/gems/shoulda-matchers-2.1.0/spec/support/mailer_builder.rb +10 -0
  337. data/vendor/bundle/gems/shoulda-matchers-2.1.0/spec/support/model_builder.rb +77 -0
  338. data/vendor/bundle/gems/tilt-1.4.1/CHANGELOG.md +44 -0
  339. data/vendor/bundle/gems/tilt-1.4.1/COPYING +18 -0
  340. data/vendor/bundle/gems/tilt-1.4.1/Gemfile +32 -0
  341. data/vendor/bundle/gems/tilt-1.4.1/HACKING +16 -0
  342. data/vendor/bundle/gems/tilt-1.4.1/README.md +232 -0
  343. data/vendor/bundle/gems/tilt-1.4.1/Rakefile +104 -0
  344. data/vendor/bundle/gems/tilt-1.4.1/TEMPLATES.md +516 -0
  345. data/vendor/bundle/gems/tilt-1.4.1/bin/tilt +112 -0
  346. data/vendor/bundle/gems/tilt-1.4.1/lib/tilt/asciidoc.rb +34 -0
  347. data/vendor/bundle/gems/tilt-1.4.1/lib/tilt/builder.rb +40 -0
  348. data/vendor/bundle/gems/tilt-1.4.1/lib/tilt/coffee.rb +54 -0
  349. data/vendor/bundle/gems/tilt-1.4.1/lib/tilt/css.rb +80 -0
  350. data/vendor/bundle/gems/tilt-1.4.1/lib/tilt/csv.rb +71 -0
  351. data/vendor/bundle/gems/tilt-1.4.1/lib/tilt/erb.rb +110 -0
  352. data/vendor/bundle/gems/tilt-1.4.1/lib/tilt/etanni.rb +27 -0
  353. data/vendor/bundle/gems/tilt-1.4.1/lib/tilt/haml.rb +64 -0
  354. data/vendor/bundle/gems/tilt-1.4.1/lib/tilt/liquid.rb +45 -0
  355. data/vendor/bundle/gems/tilt-1.4.1/lib/tilt/markaby.rb +52 -0
  356. data/vendor/bundle/gems/tilt-1.4.1/lib/tilt/markdown.rb +214 -0
  357. data/vendor/bundle/gems/tilt-1.4.1/lib/tilt/nokogiri.rb +43 -0
  358. data/vendor/bundle/gems/tilt-1.4.1/lib/tilt/plain.rb +20 -0
  359. data/vendor/bundle/gems/tilt-1.4.1/lib/tilt/radius.rb +55 -0
  360. data/vendor/bundle/gems/tilt-1.4.1/lib/tilt/rdoc.rb +47 -0
  361. data/vendor/bundle/gems/tilt-1.4.1/lib/tilt/string.rb +21 -0
  362. data/vendor/bundle/gems/tilt-1.4.1/lib/tilt/template.rb +292 -0
  363. data/vendor/bundle/gems/tilt-1.4.1/lib/tilt/textile.rb +30 -0
  364. data/vendor/bundle/gems/tilt-1.4.1/lib/tilt/wiki.rb +58 -0
  365. data/vendor/bundle/gems/tilt-1.4.1/lib/tilt/yajl.rb +94 -0
  366. data/vendor/bundle/gems/tilt-1.4.1/lib/tilt.rb +204 -0
  367. data/vendor/bundle/gems/tilt-1.4.1/test/contest.rb +68 -0
  368. data/vendor/bundle/gems/tilt-1.4.1/test/markaby/locals.mab +1 -0
  369. data/vendor/bundle/gems/tilt-1.4.1/test/markaby/markaby.mab +1 -0
  370. data/vendor/bundle/gems/tilt-1.4.1/test/markaby/markaby_other_static.mab +1 -0
  371. data/vendor/bundle/gems/tilt-1.4.1/test/markaby/render_twice.mab +1 -0
  372. data/vendor/bundle/gems/tilt-1.4.1/test/markaby/scope.mab +1 -0
  373. data/vendor/bundle/gems/tilt-1.4.1/test/markaby/yielding.mab +2 -0
  374. data/vendor/bundle/gems/tilt-1.4.1/test/tilt_asciidoctor_test.rb +44 -0
  375. data/vendor/bundle/gems/tilt-1.4.1/test/tilt_blueclothtemplate_test.rb +45 -0
  376. data/vendor/bundle/gems/tilt-1.4.1/test/tilt_buildertemplate_test.rb +59 -0
  377. data/vendor/bundle/gems/tilt-1.4.1/test/tilt_cache_test.rb +32 -0
  378. data/vendor/bundle/gems/tilt-1.4.1/test/tilt_coffeescripttemplate_test.rb +114 -0
  379. data/vendor/bundle/gems/tilt-1.4.1/test/tilt_compilesite_test.rb +51 -0
  380. data/vendor/bundle/gems/tilt-1.4.1/test/tilt_creoletemplate_test.rb +28 -0
  381. data/vendor/bundle/gems/tilt-1.4.1/test/tilt_csv_test.rb +69 -0
  382. data/vendor/bundle/gems/tilt-1.4.1/test/tilt_erbtemplate_test.rb +239 -0
  383. data/vendor/bundle/gems/tilt-1.4.1/test/tilt_erubistemplate_test.rb +151 -0
  384. data/vendor/bundle/gems/tilt-1.4.1/test/tilt_etannitemplate_test.rb +173 -0
  385. data/vendor/bundle/gems/tilt-1.4.1/test/tilt_fallback_test.rb +122 -0
  386. data/vendor/bundle/gems/tilt-1.4.1/test/tilt_hamltemplate_test.rb +144 -0
  387. data/vendor/bundle/gems/tilt-1.4.1/test/tilt_kramdown_test.rb +42 -0
  388. data/vendor/bundle/gems/tilt-1.4.1/test/tilt_lesstemplate_test.less +1 -0
  389. data/vendor/bundle/gems/tilt-1.4.1/test/tilt_lesstemplate_test.rb +42 -0
  390. data/vendor/bundle/gems/tilt-1.4.1/test/tilt_liquidtemplate_test.rb +78 -0
  391. data/vendor/bundle/gems/tilt-1.4.1/test/tilt_markaby_test.rb +88 -0
  392. data/vendor/bundle/gems/tilt-1.4.1/test/tilt_markdown_test.rb +172 -0
  393. data/vendor/bundle/gems/tilt-1.4.1/test/tilt_marukutemplate_test.rb +48 -0
  394. data/vendor/bundle/gems/tilt-1.4.1/test/tilt_nokogiritemplate_test.rb +87 -0
  395. data/vendor/bundle/gems/tilt-1.4.1/test/tilt_radiustemplate_test.rb +75 -0
  396. data/vendor/bundle/gems/tilt-1.4.1/test/tilt_rdiscounttemplate_test.rb +55 -0
  397. data/vendor/bundle/gems/tilt-1.4.1/test/tilt_rdoctemplate_test.rb +31 -0
  398. data/vendor/bundle/gems/tilt-1.4.1/test/tilt_redcarpettemplate_test.rb +71 -0
  399. data/vendor/bundle/gems/tilt-1.4.1/test/tilt_redclothtemplate_test.rb +36 -0
  400. data/vendor/bundle/gems/tilt-1.4.1/test/tilt_sasstemplate_test.rb +41 -0
  401. data/vendor/bundle/gems/tilt-1.4.1/test/tilt_stringtemplate_test.rb +170 -0
  402. data/vendor/bundle/gems/tilt-1.4.1/test/tilt_template_test.rb +323 -0
  403. data/vendor/bundle/gems/tilt-1.4.1/test/tilt_test.rb +65 -0
  404. data/vendor/bundle/gems/tilt-1.4.1/test/tilt_wikiclothtemplate_test.rb +32 -0
  405. data/vendor/bundle/gems/tilt-1.4.1/test/tilt_yajltemplate_test.rb +101 -0
  406. data/vendor/bundle/gems/tilt-1.4.1/tilt.gemspec +120 -0
  407. data/vendor/bundle/gems/yard-0.8.6.1/LEGAL +66 -0
  408. data/vendor/bundle/gems/yard-0.8.6.1/LICENSE +22 -0
  409. data/vendor/bundle/gems/yard-0.8.6.1/README.md +601 -0
  410. data/vendor/bundle/gems/yard-0.8.6.1/Rakefile +61 -0
  411. data/vendor/bundle/gems/yard-0.8.6.1/benchmarks/builtins_vs_eval.rb +23 -0
  412. data/vendor/bundle/gems/yard-0.8.6.1/benchmarks/concat_vs_join.rb +12 -0
  413. data/vendor/bundle/gems/yard-0.8.6.1/benchmarks/erb_vs_erubis.rb +53 -0
  414. data/vendor/bundle/gems/yard-0.8.6.1/benchmarks/format_args.rb +46 -0
  415. data/vendor/bundle/gems/yard-0.8.6.1/benchmarks/generation.rb +37 -0
  416. data/vendor/bundle/gems/yard-0.8.6.1/benchmarks/marshal_vs_dbm.rb +63 -0
  417. data/vendor/bundle/gems/yard-0.8.6.1/benchmarks/parsing.rb +46 -0
  418. data/vendor/bundle/gems/yard-0.8.6.1/benchmarks/pathname_vs_string.rb +50 -0
  419. data/vendor/bundle/gems/yard-0.8.6.1/benchmarks/rdoc_vs_yardoc.rb +10 -0
  420. data/vendor/bundle/gems/yard-0.8.6.1/benchmarks/registry_store_types.rb +48 -0
  421. data/vendor/bundle/gems/yard-0.8.6.1/benchmarks/ri_vs_yri.rb +18 -0
  422. data/vendor/bundle/gems/yard-0.8.6.1/benchmarks/ripper_parser.rb +12 -0
  423. data/vendor/bundle/gems/yard-0.8.6.1/benchmarks/splat_vs_flatten.rb +12 -0
  424. data/vendor/bundle/gems/yard-0.8.6.1/benchmarks/template_erb.rb +22 -0
  425. data/vendor/bundle/gems/yard-0.8.6.1/benchmarks/template_format.rb +6 -0
  426. data/vendor/bundle/gems/yard-0.8.6.1/benchmarks/template_profile.rb +17 -0
  427. data/vendor/bundle/gems/yard-0.8.6.1/benchmarks/yri_cache.rb +19 -0
  428. data/vendor/bundle/gems/yard-0.8.6.1/bin/yard +12 -0
  429. data/vendor/bundle/gems/yard-0.8.6.1/bin/yardoc +12 -0
  430. data/vendor/bundle/gems/yard-0.8.6.1/bin/yri +12 -0
  431. data/vendor/bundle/gems/yard-0.8.6.1/docs/CodeObjects.md +115 -0
  432. data/vendor/bundle/gems/yard-0.8.6.1/docs/GettingStarted.md +592 -0
  433. data/vendor/bundle/gems/yard-0.8.6.1/docs/Handlers.md +152 -0
  434. data/vendor/bundle/gems/yard-0.8.6.1/docs/Overview.md +61 -0
  435. data/vendor/bundle/gems/yard-0.8.6.1/docs/Parser.md +191 -0
  436. data/vendor/bundle/gems/yard-0.8.6.1/docs/Tags.md +282 -0
  437. data/vendor/bundle/gems/yard-0.8.6.1/docs/TagsArch.md +123 -0
  438. data/vendor/bundle/gems/yard-0.8.6.1/docs/Templates.md +496 -0
  439. data/vendor/bundle/gems/yard-0.8.6.1/docs/WhatsNew.md +1244 -0
  440. data/vendor/bundle/gems/yard-0.8.6.1/docs/images/code-objects-class-diagram.png +0 -0
  441. data/vendor/bundle/gems/yard-0.8.6.1/docs/images/handlers-class-diagram.png +0 -0
  442. data/vendor/bundle/gems/yard-0.8.6.1/docs/images/overview-class-diagram.png +0 -0
  443. data/vendor/bundle/gems/yard-0.8.6.1/docs/images/parser-class-diagram.png +0 -0
  444. data/vendor/bundle/gems/yard-0.8.6.1/docs/images/tags-class-diagram.png +0 -0
  445. data/vendor/bundle/gems/yard-0.8.6.1/docs/templates/default/fulldoc/html/full_list_tag.erb +7 -0
  446. data/vendor/bundle/gems/yard-0.8.6.1/docs/templates/default/fulldoc/html/setup.rb +6 -0
  447. data/vendor/bundle/gems/yard-0.8.6.1/docs/templates/default/layout/html/setup.rb +8 -0
  448. data/vendor/bundle/gems/yard-0.8.6.1/docs/templates/default/layout/html/tag_list.erb +11 -0
  449. data/vendor/bundle/gems/yard-0.8.6.1/docs/templates/default/yard_tags/html/list.erb +18 -0
  450. data/vendor/bundle/gems/yard-0.8.6.1/docs/templates/default/yard_tags/html/setup.rb +27 -0
  451. data/vendor/bundle/gems/yard-0.8.6.1/docs/templates/plugin.rb +65 -0
  452. data/vendor/bundle/gems/yard-0.8.6.1/lib/rubygems_plugin.rb +4 -0
  453. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/autoload.rb +290 -0
  454. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/cli/command.rb +84 -0
  455. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/cli/command_parser.rb +92 -0
  456. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/cli/config.rb +136 -0
  457. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/cli/diff.rb +270 -0
  458. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/cli/display.rb +68 -0
  459. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/cli/gems.rb +83 -0
  460. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/cli/graph.rb +125 -0
  461. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/cli/help.rb +18 -0
  462. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/cli/i18n.rb +69 -0
  463. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/cli/list.rb +22 -0
  464. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/cli/markup_types.rb +33 -0
  465. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/cli/server.rb +253 -0
  466. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/cli/stats.rb +213 -0
  467. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/cli/yardoc.rb +731 -0
  468. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/cli/yardopts_command.rb +109 -0
  469. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/cli/yri.rb +214 -0
  470. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/code_objects/base.rb +585 -0
  471. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/code_objects/class_object.rb +143 -0
  472. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/code_objects/class_variable_object.rb +8 -0
  473. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/code_objects/constant_object.rb +13 -0
  474. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/code_objects/extended_method_object.rb +23 -0
  475. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/code_objects/extra_file_object.rb +128 -0
  476. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/code_objects/macro_object.rb +172 -0
  477. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/code_objects/method_object.rb +191 -0
  478. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/code_objects/module_object.rb +18 -0
  479. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/code_objects/namespace_object.rb +200 -0
  480. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/code_objects/proxy.rb +258 -0
  481. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/code_objects/root_object.rb +17 -0
  482. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/config.rb +269 -0
  483. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/core_ext/array.rb +15 -0
  484. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/core_ext/file.rb +65 -0
  485. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/core_ext/hash.rb +15 -0
  486. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/core_ext/insertion.rb +60 -0
  487. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/core_ext/module.rb +19 -0
  488. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/core_ext/string.rb +67 -0
  489. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/core_ext/symbol_hash.rb +73 -0
  490. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/docstring.rb +364 -0
  491. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/docstring_parser.rb +321 -0
  492. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/globals.rb +18 -0
  493. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/handlers/base.rb +597 -0
  494. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/handlers/c/alias_handler.rb +15 -0
  495. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/handlers/c/attribute_handler.rb +13 -0
  496. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/handlers/c/base.rb +110 -0
  497. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/handlers/c/class_handler.rb +26 -0
  498. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/handlers/c/constant_handler.rb +12 -0
  499. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/handlers/c/handler_methods.rb +166 -0
  500. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/handlers/c/init_handler.rb +18 -0
  501. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/handlers/c/method_handler.rb +35 -0
  502. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/handlers/c/mixin_handler.rb +13 -0
  503. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/handlers/c/module_handler.rb +16 -0
  504. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/handlers/c/override_comment_handler.rb +30 -0
  505. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/handlers/c/path_handler.rb +10 -0
  506. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/handlers/c/struct_handler.rb +12 -0
  507. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/handlers/c/symbol_handler.rb +7 -0
  508. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/handlers/processor.rb +201 -0
  509. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/handlers/ruby/alias_handler.rb +41 -0
  510. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/handlers/ruby/attribute_handler.rb +82 -0
  511. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/handlers/ruby/base.rb +164 -0
  512. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/handlers/ruby/class_condition_handler.rb +86 -0
  513. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/handlers/ruby/class_handler.rb +121 -0
  514. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/handlers/ruby/class_variable_handler.rb +16 -0
  515. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/handlers/ruby/comment_handler.rb +9 -0
  516. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/handlers/ruby/constant_handler.rb +45 -0
  517. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/handlers/ruby/dsl_handler.rb +14 -0
  518. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/handlers/ruby/dsl_handler_methods.rb +77 -0
  519. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/handlers/ruby/exception_handler.rb +26 -0
  520. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/handlers/ruby/extend_handler.rb +21 -0
  521. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/handlers/ruby/legacy/alias_handler.rb +34 -0
  522. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/handlers/ruby/legacy/attribute_handler.rb +60 -0
  523. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/handlers/ruby/legacy/base.rb +250 -0
  524. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/handlers/ruby/legacy/class_condition_handler.rb +83 -0
  525. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/handlers/ruby/legacy/class_handler.rb +111 -0
  526. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/handlers/ruby/legacy/class_variable_handler.rb +14 -0
  527. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/handlers/ruby/legacy/comment_handler.rb +9 -0
  528. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/handlers/ruby/legacy/constant_handler.rb +28 -0
  529. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/handlers/ruby/legacy/dsl_handler.rb +16 -0
  530. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/handlers/ruby/legacy/exception_handler.rb +12 -0
  531. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/handlers/ruby/legacy/extend_handler.rb +20 -0
  532. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/handlers/ruby/legacy/method_handler.rb +85 -0
  533. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/handlers/ruby/legacy/mixin_handler.rb +39 -0
  534. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/handlers/ruby/legacy/module_function_handler.rb +18 -0
  535. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/handlers/ruby/legacy/module_handler.rb +11 -0
  536. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/handlers/ruby/legacy/private_constant_handler.rb +21 -0
  537. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/handlers/ruby/legacy/visibility_handler.rb +16 -0
  538. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/handlers/ruby/legacy/yield_handler.rb +28 -0
  539. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/handlers/ruby/method_condition_handler.rb +8 -0
  540. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/handlers/ruby/method_handler.rb +92 -0
  541. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/handlers/ruby/mixin_handler.rb +36 -0
  542. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/handlers/ruby/module_function_handler.rb +26 -0
  543. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/handlers/ruby/module_handler.rb +11 -0
  544. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/handlers/ruby/private_constant_handler.rb +36 -0
  545. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/handlers/ruby/struct_handler_methods.rb +141 -0
  546. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/handlers/ruby/visibility_handler.rb +24 -0
  547. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/handlers/ruby/yield_handler.rb +30 -0
  548. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/i18n/locale.rb +74 -0
  549. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/i18n/message.rb +56 -0
  550. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/i18n/messages.rb +55 -0
  551. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/i18n/pot_generator.rb +280 -0
  552. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/i18n/text.rb +173 -0
  553. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/logging.rb +190 -0
  554. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/options.rb +216 -0
  555. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/parser/base.rb +56 -0
  556. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/parser/c/c_parser.rb +225 -0
  557. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/parser/c/comment_parser.rb +131 -0
  558. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/parser/c/statement.rb +63 -0
  559. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/parser/ruby/ast_node.rb +496 -0
  560. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/parser/ruby/legacy/ruby_lex.rb +1377 -0
  561. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/parser/ruby/legacy/ruby_parser.rb +31 -0
  562. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/parser/ruby/legacy/statement.rb +65 -0
  563. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/parser/ruby/legacy/statement_list.rb +384 -0
  564. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/parser/ruby/legacy/token_list.rb +71 -0
  565. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/parser/ruby/ruby_parser.rb +625 -0
  566. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/parser/source_parser.rb +517 -0
  567. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/rake/yardoc_task.rb +74 -0
  568. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/registry.rb +438 -0
  569. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/registry_store.rb +319 -0
  570. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/rubygems/backports/LICENSE.txt +57 -0
  571. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/rubygems/backports/MIT.txt +20 -0
  572. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/rubygems/backports/gem.rb +9 -0
  573. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/rubygems/backports/source_index.rb +370 -0
  574. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/rubygems/backports.rb +8 -0
  575. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/rubygems/doc_manager.rb +88 -0
  576. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/rubygems/specification.rb +41 -0
  577. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/serializers/base.rb +80 -0
  578. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/serializers/file_system_serializer.rb +90 -0
  579. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/serializers/process_serializer.rb +24 -0
  580. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/serializers/stdout_serializer.rb +32 -0
  581. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/serializers/yardoc_serializer.rb +124 -0
  582. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/server/adapter.rb +100 -0
  583. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/server/commands/base.rb +192 -0
  584. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/server/commands/display_file_command.rb +24 -0
  585. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/server/commands/display_object_command.rb +58 -0
  586. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/server/commands/frames_command.rb +15 -0
  587. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/server/commands/library_command.rb +148 -0
  588. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/server/commands/library_index_command.rb +24 -0
  589. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/server/commands/list_command.rb +24 -0
  590. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/server/commands/search_command.rb +78 -0
  591. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/server/commands/static_file_command.rb +57 -0
  592. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/server/doc_server_helper.rb +76 -0
  593. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/server/doc_server_serializer.rb +33 -0
  594. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/server/library_version.rb +227 -0
  595. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/server/rack_adapter.rb +88 -0
  596. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/server/router.rb +176 -0
  597. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/server/static_caching.rb +45 -0
  598. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/server/templates/default/fulldoc/html/css/custom.css +78 -0
  599. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/server/templates/default/fulldoc/html/images/processing.gif +0 -0
  600. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/server/templates/default/fulldoc/html/js/autocomplete.js +12 -0
  601. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/server/templates/default/layout/html/breadcrumb.erb +46 -0
  602. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/server/templates/default/layout/html/script_setup.erb +8 -0
  603. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/server/templates/default/layout/html/setup.rb +7 -0
  604. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/server/templates/default/method_details/html/permalink.erb +4 -0
  605. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/server/templates/default/method_details/html/setup.rb +4 -0
  606. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/server/templates/doc_server/library_list/html/contents.erb +13 -0
  607. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/server/templates/doc_server/library_list/html/headers.erb +26 -0
  608. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/server/templates/doc_server/library_list/html/library_list.erb +12 -0
  609. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/server/templates/doc_server/library_list/html/setup.rb +3 -0
  610. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/server/templates/doc_server/library_list/html/title.erb +2 -0
  611. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/server/templates/doc_server/processing/html/processing.erb +51 -0
  612. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/server/templates/doc_server/processing/html/setup.rb +3 -0
  613. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/server/templates/doc_server/search/html/search.erb +18 -0
  614. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/server/templates/doc_server/search/html/setup.rb +8 -0
  615. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/server/webrick_adapter.rb +43 -0
  616. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/server.rb +11 -0
  617. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/tags/default_factory.rb +176 -0
  618. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/tags/default_tag.rb +12 -0
  619. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/tags/directives.rb +595 -0
  620. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/tags/library.rb +630 -0
  621. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/tags/option_tag.rb +12 -0
  622. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/tags/overload_tag.rb +65 -0
  623. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/tags/ref_tag.rb +7 -0
  624. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/tags/ref_tag_list.rb +27 -0
  625. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/tags/tag.rb +57 -0
  626. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/tags/tag_format_error.rb +6 -0
  627. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/templates/engine.rb +185 -0
  628. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/templates/erb_cache.rb +22 -0
  629. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/templates/helpers/base_helper.rb +212 -0
  630. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/templates/helpers/filter_helper.rb +26 -0
  631. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/templates/helpers/html_helper.rb +599 -0
  632. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/templates/helpers/html_syntax_highlight_helper.rb +59 -0
  633. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/templates/helpers/markup/rdoc_markdown.rb +22 -0
  634. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/templates/helpers/markup/rdoc_markup.rb +106 -0
  635. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/templates/helpers/markup_helper.rb +169 -0
  636. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/templates/helpers/method_helper.rb +74 -0
  637. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/templates/helpers/module_helper.rb +19 -0
  638. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/templates/helpers/text_helper.rb +95 -0
  639. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/templates/helpers/uml_helper.rb +46 -0
  640. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/templates/section.rb +106 -0
  641. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/templates/template.rb +407 -0
  642. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/templates/template_options.rb +88 -0
  643. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/verifier.rb +148 -0
  644. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard/version.rb +3 -0
  645. data/vendor/bundle/gems/yard-0.8.6.1/lib/yard.rb +71 -0
  646. data/vendor/bundle/gems/yard-0.8.6.1/spec/cli/command_parser_spec.rb +43 -0
  647. data/vendor/bundle/gems/yard-0.8.6.1/spec/cli/command_spec.rb +36 -0
  648. data/vendor/bundle/gems/yard-0.8.6.1/spec/cli/config_spec.rb +92 -0
  649. data/vendor/bundle/gems/yard-0.8.6.1/spec/cli/diff_spec.rb +260 -0
  650. data/vendor/bundle/gems/yard-0.8.6.1/spec/cli/display_spec.rb +30 -0
  651. data/vendor/bundle/gems/yard-0.8.6.1/spec/cli/gems_spec.rb +81 -0
  652. data/vendor/bundle/gems/yard-0.8.6.1/spec/cli/graph_spec.rb +17 -0
  653. data/vendor/bundle/gems/yard-0.8.6.1/spec/cli/help_spec.rb +22 -0
  654. data/vendor/bundle/gems/yard-0.8.6.1/spec/cli/i18n_spec.rb +111 -0
  655. data/vendor/bundle/gems/yard-0.8.6.1/spec/cli/list_spec.rb +8 -0
  656. data/vendor/bundle/gems/yard-0.8.6.1/spec/cli/markup_types_spec.rb +22 -0
  657. data/vendor/bundle/gems/yard-0.8.6.1/spec/cli/server_spec.rb +327 -0
  658. data/vendor/bundle/gems/yard-0.8.6.1/spec/cli/stats_spec.rb +90 -0
  659. data/vendor/bundle/gems/yard-0.8.6.1/spec/cli/yardoc_spec.rb +777 -0
  660. data/vendor/bundle/gems/yard-0.8.6.1/spec/cli/yri_spec.rb +99 -0
  661. data/vendor/bundle/gems/yard-0.8.6.1/spec/code_objects/base_spec.rb +438 -0
  662. data/vendor/bundle/gems/yard-0.8.6.1/spec/code_objects/class_object_spec.rb +225 -0
  663. data/vendor/bundle/gems/yard-0.8.6.1/spec/code_objects/code_object_list_spec.rb +33 -0
  664. data/vendor/bundle/gems/yard-0.8.6.1/spec/code_objects/constants_spec.rb +82 -0
  665. data/vendor/bundle/gems/yard-0.8.6.1/spec/code_objects/extra_file_object_spec.rb +147 -0
  666. data/vendor/bundle/gems/yard-0.8.6.1/spec/code_objects/macro_object_spec.rb +148 -0
  667. data/vendor/bundle/gems/yard-0.8.6.1/spec/code_objects/method_object_spec.rb +175 -0
  668. data/vendor/bundle/gems/yard-0.8.6.1/spec/code_objects/module_object_spec.rb +141 -0
  669. data/vendor/bundle/gems/yard-0.8.6.1/spec/code_objects/namespace_object_spec.rb +170 -0
  670. data/vendor/bundle/gems/yard-0.8.6.1/spec/code_objects/proxy_spec.rb +140 -0
  671. data/vendor/bundle/gems/yard-0.8.6.1/spec/code_objects/spec_helper.rb +3 -0
  672. data/vendor/bundle/gems/yard-0.8.6.1/spec/config_spec.rb +176 -0
  673. data/vendor/bundle/gems/yard-0.8.6.1/spec/core_ext/array_spec.rb +14 -0
  674. data/vendor/bundle/gems/yard-0.8.6.1/spec/core_ext/file_spec.rb +68 -0
  675. data/vendor/bundle/gems/yard-0.8.6.1/spec/core_ext/hash_spec.rb +14 -0
  676. data/vendor/bundle/gems/yard-0.8.6.1/spec/core_ext/insertion_spec.rb +37 -0
  677. data/vendor/bundle/gems/yard-0.8.6.1/spec/core_ext/module_spec.rb +15 -0
  678. data/vendor/bundle/gems/yard-0.8.6.1/spec/core_ext/string_spec.rb +42 -0
  679. data/vendor/bundle/gems/yard-0.8.6.1/spec/core_ext/symbol_hash_spec.rb +86 -0
  680. data/vendor/bundle/gems/yard-0.8.6.1/spec/docstring_parser_spec.rb +228 -0
  681. data/vendor/bundle/gems/yard-0.8.6.1/spec/docstring_spec.rb +325 -0
  682. data/vendor/bundle/gems/yard-0.8.6.1/spec/handlers/alias_handler_spec.rb +80 -0
  683. data/vendor/bundle/gems/yard-0.8.6.1/spec/handlers/attribute_handler_spec.rb +94 -0
  684. data/vendor/bundle/gems/yard-0.8.6.1/spec/handlers/base_spec.rb +206 -0
  685. data/vendor/bundle/gems/yard-0.8.6.1/spec/handlers/c/alias_handler_spec.rb +33 -0
  686. data/vendor/bundle/gems/yard-0.8.6.1/spec/handlers/c/attribute_handler_spec.rb +40 -0
  687. data/vendor/bundle/gems/yard-0.8.6.1/spec/handlers/c/class_handler_spec.rb +63 -0
  688. data/vendor/bundle/gems/yard-0.8.6.1/spec/handlers/c/constant_handler_spec.rb +68 -0
  689. data/vendor/bundle/gems/yard-0.8.6.1/spec/handlers/c/init_handler_spec.rb +47 -0
  690. data/vendor/bundle/gems/yard-0.8.6.1/spec/handlers/c/method_handler_spec.rb +229 -0
  691. data/vendor/bundle/gems/yard-0.8.6.1/spec/handlers/c/mixin_handler_spec.rb +27 -0
  692. data/vendor/bundle/gems/yard-0.8.6.1/spec/handlers/c/module_handler_spec.rb +38 -0
  693. data/vendor/bundle/gems/yard-0.8.6.1/spec/handlers/c/override_comment_handler_spec.rb +46 -0
  694. data/vendor/bundle/gems/yard-0.8.6.1/spec/handlers/c/path_handler_spec.rb +35 -0
  695. data/vendor/bundle/gems/yard-0.8.6.1/spec/handlers/c/spec_helper.rb +13 -0
  696. data/vendor/bundle/gems/yard-0.8.6.1/spec/handlers/c/struct_handler_spec.rb +15 -0
  697. data/vendor/bundle/gems/yard-0.8.6.1/spec/handlers/class_condition_handler_spec.rb +67 -0
  698. data/vendor/bundle/gems/yard-0.8.6.1/spec/handlers/class_handler_spec.rb +246 -0
  699. data/vendor/bundle/gems/yard-0.8.6.1/spec/handlers/class_variable_handler_spec.rb +11 -0
  700. data/vendor/bundle/gems/yard-0.8.6.1/spec/handlers/constant_handler_spec.rb +64 -0
  701. data/vendor/bundle/gems/yard-0.8.6.1/spec/handlers/dsl_handler_spec.rb +197 -0
  702. data/vendor/bundle/gems/yard-0.8.6.1/spec/handlers/examples/alias_handler_001.rb.txt +44 -0
  703. data/vendor/bundle/gems/yard-0.8.6.1/spec/handlers/examples/attribute_handler_001.rb.txt +32 -0
  704. data/vendor/bundle/gems/yard-0.8.6.1/spec/handlers/examples/class_condition_handler_001.rb.txt +69 -0
  705. data/vendor/bundle/gems/yard-0.8.6.1/spec/handlers/examples/class_handler_001.rb.txt +120 -0
  706. data/vendor/bundle/gems/yard-0.8.6.1/spec/handlers/examples/class_variable_handler_001.rb.txt +10 -0
  707. data/vendor/bundle/gems/yard-0.8.6.1/spec/handlers/examples/constant_handler_001.rb.txt +25 -0
  708. data/vendor/bundle/gems/yard-0.8.6.1/spec/handlers/examples/dsl_handler_001.rb.txt +125 -0
  709. data/vendor/bundle/gems/yard-0.8.6.1/spec/handlers/examples/exception_handler_001.rb.txt +59 -0
  710. data/vendor/bundle/gems/yard-0.8.6.1/spec/handlers/examples/extend_handler_001.rb.txt +16 -0
  711. data/vendor/bundle/gems/yard-0.8.6.1/spec/handlers/examples/method_condition_handler_001.rb.txt +10 -0
  712. data/vendor/bundle/gems/yard-0.8.6.1/spec/handlers/examples/method_handler_001.rb.txt +126 -0
  713. data/vendor/bundle/gems/yard-0.8.6.1/spec/handlers/examples/mixin_handler_001.rb.txt +37 -0
  714. data/vendor/bundle/gems/yard-0.8.6.1/spec/handlers/examples/module_handler_001.rb.txt +29 -0
  715. data/vendor/bundle/gems/yard-0.8.6.1/spec/handlers/examples/private_constant_handler_001.rb.txt +8 -0
  716. data/vendor/bundle/gems/yard-0.8.6.1/spec/handlers/examples/process_handler_001.rb.txt +11 -0
  717. data/vendor/bundle/gems/yard-0.8.6.1/spec/handlers/examples/visibility_handler_001.rb.txt +32 -0
  718. data/vendor/bundle/gems/yard-0.8.6.1/spec/handlers/examples/yield_handler_001.rb.txt +54 -0
  719. data/vendor/bundle/gems/yard-0.8.6.1/spec/handlers/exception_handler_spec.rb +48 -0
  720. data/vendor/bundle/gems/yard-0.8.6.1/spec/handlers/extend_handler_spec.rb +23 -0
  721. data/vendor/bundle/gems/yard-0.8.6.1/spec/handlers/legacy_base_spec.rb +128 -0
  722. data/vendor/bundle/gems/yard-0.8.6.1/spec/handlers/method_condition_handler_spec.rb +14 -0
  723. data/vendor/bundle/gems/yard-0.8.6.1/spec/handlers/method_handler_spec.rb +184 -0
  724. data/vendor/bundle/gems/yard-0.8.6.1/spec/handlers/mixin_handler_spec.rb +55 -0
  725. data/vendor/bundle/gems/yard-0.8.6.1/spec/handlers/module_function_handler_spec.rb +105 -0
  726. data/vendor/bundle/gems/yard-0.8.6.1/spec/handlers/module_handler_spec.rb +34 -0
  727. data/vendor/bundle/gems/yard-0.8.6.1/spec/handlers/private_constant_handler_spec.rb +24 -0
  728. data/vendor/bundle/gems/yard-0.8.6.1/spec/handlers/processor_spec.rb +34 -0
  729. data/vendor/bundle/gems/yard-0.8.6.1/spec/handlers/ruby/base_spec.rb +94 -0
  730. data/vendor/bundle/gems/yard-0.8.6.1/spec/handlers/ruby/legacy/base_spec.rb +82 -0
  731. data/vendor/bundle/gems/yard-0.8.6.1/spec/handlers/spec_helper.rb +33 -0
  732. data/vendor/bundle/gems/yard-0.8.6.1/spec/handlers/visibility_handler_spec.rb +39 -0
  733. data/vendor/bundle/gems/yard-0.8.6.1/spec/handlers/yield_handler_spec.rb +51 -0
  734. data/vendor/bundle/gems/yard-0.8.6.1/spec/i18n/locale_spec.rb +68 -0
  735. data/vendor/bundle/gems/yard-0.8.6.1/spec/i18n/message_spec.rb +52 -0
  736. data/vendor/bundle/gems/yard-0.8.6.1/spec/i18n/messages_spec.rb +67 -0
  737. data/vendor/bundle/gems/yard-0.8.6.1/spec/i18n/pot_generator_spec.rb +262 -0
  738. data/vendor/bundle/gems/yard-0.8.6.1/spec/i18n/text_spec.rb +180 -0
  739. data/vendor/bundle/gems/yard-0.8.6.1/spec/logging_spec.rb +35 -0
  740. data/vendor/bundle/gems/yard-0.8.6.1/spec/options_spec.rb +171 -0
  741. data/vendor/bundle/gems/yard-0.8.6.1/spec/parser/base_spec.rb +24 -0
  742. data/vendor/bundle/gems/yard-0.8.6.1/spec/parser/c_parser_spec.rb +166 -0
  743. data/vendor/bundle/gems/yard-0.8.6.1/spec/parser/examples/array.c.txt +3887 -0
  744. data/vendor/bundle/gems/yard-0.8.6.1/spec/parser/examples/example1.rb.txt +8 -0
  745. data/vendor/bundle/gems/yard-0.8.6.1/spec/parser/examples/extrafile.c.txt +8 -0
  746. data/vendor/bundle/gems/yard-0.8.6.1/spec/parser/examples/multifile.c.txt +6 -0
  747. data/vendor/bundle/gems/yard-0.8.6.1/spec/parser/examples/override.c.txt +424 -0
  748. data/vendor/bundle/gems/yard-0.8.6.1/spec/parser/examples/parse_in_order_001.rb.txt +2 -0
  749. data/vendor/bundle/gems/yard-0.8.6.1/spec/parser/examples/parse_in_order_002.rb.txt +2 -0
  750. data/vendor/bundle/gems/yard-0.8.6.1/spec/parser/examples/tag_handler_001.rb.txt +8 -0
  751. data/vendor/bundle/gems/yard-0.8.6.1/spec/parser/ruby/ast_node_spec.rb +33 -0
  752. data/vendor/bundle/gems/yard-0.8.6.1/spec/parser/ruby/legacy/statement_list_spec.rb +299 -0
  753. data/vendor/bundle/gems/yard-0.8.6.1/spec/parser/ruby/legacy/token_list_spec.rb +77 -0
  754. data/vendor/bundle/gems/yard-0.8.6.1/spec/parser/ruby/ruby_parser_spec.rb +334 -0
  755. data/vendor/bundle/gems/yard-0.8.6.1/spec/parser/source_parser_spec.rb +717 -0
  756. data/vendor/bundle/gems/yard-0.8.6.1/spec/parser/tag_parsing_spec.rb +18 -0
  757. data/vendor/bundle/gems/yard-0.8.6.1/spec/rake/yardoc_task_spec.rb +101 -0
  758. data/vendor/bundle/gems/yard-0.8.6.1/spec/registry_spec.rb +393 -0
  759. data/vendor/bundle/gems/yard-0.8.6.1/spec/registry_store_spec.rb +315 -0
  760. data/vendor/bundle/gems/yard-0.8.6.1/spec/rubygems/doc_manager_spec.rb +112 -0
  761. data/vendor/bundle/gems/yard-0.8.6.1/spec/serializers/data/serialized_yardoc/checksums +1 -0
  762. data/vendor/bundle/gems/yard-0.8.6.1/spec/serializers/data/serialized_yardoc/objects/Foo/bar_i.dat +0 -0
  763. data/vendor/bundle/gems/yard-0.8.6.1/spec/serializers/data/serialized_yardoc/objects/Foo/baz_i.dat +0 -0
  764. data/vendor/bundle/gems/yard-0.8.6.1/spec/serializers/data/serialized_yardoc/objects/Foo.dat +0 -0
  765. data/vendor/bundle/gems/yard-0.8.6.1/spec/serializers/data/serialized_yardoc/objects/root.dat +0 -0
  766. data/vendor/bundle/gems/yard-0.8.6.1/spec/serializers/data/serialized_yardoc/proxy_types +2 -0
  767. data/vendor/bundle/gems/yard-0.8.6.1/spec/serializers/file_system_serializer_spec.rb +124 -0
  768. data/vendor/bundle/gems/yard-0.8.6.1/spec/serializers/spec_helper.rb +2 -0
  769. data/vendor/bundle/gems/yard-0.8.6.1/spec/serializers/yardoc_serializer_spec.rb +46 -0
  770. data/vendor/bundle/gems/yard-0.8.6.1/spec/server/adapter_spec.rb +38 -0
  771. data/vendor/bundle/gems/yard-0.8.6.1/spec/server/commands/base_spec.rb +87 -0
  772. data/vendor/bundle/gems/yard-0.8.6.1/spec/server/commands/library_command_spec.rb +39 -0
  773. data/vendor/bundle/gems/yard-0.8.6.1/spec/server/commands/static_file_command_spec.rb +84 -0
  774. data/vendor/bundle/gems/yard-0.8.6.1/spec/server/doc_server_helper_spec.rb +53 -0
  775. data/vendor/bundle/gems/yard-0.8.6.1/spec/server/doc_server_serializer_spec.rb +45 -0
  776. data/vendor/bundle/gems/yard-0.8.6.1/spec/server/rack_adapter_spec.rb +20 -0
  777. data/vendor/bundle/gems/yard-0.8.6.1/spec/server/router_spec.rb +122 -0
  778. data/vendor/bundle/gems/yard-0.8.6.1/spec/server/spec_helper.rb +17 -0
  779. data/vendor/bundle/gems/yard-0.8.6.1/spec/server/static_caching_spec.rb +39 -0
  780. data/vendor/bundle/gems/yard-0.8.6.1/spec/server/webrick_servlet_spec.rb +20 -0
  781. data/vendor/bundle/gems/yard-0.8.6.1/spec/server_spec.rb +10 -0
  782. data/vendor/bundle/gems/yard-0.8.6.1/spec/spec_helper.rb +128 -0
  783. data/vendor/bundle/gems/yard-0.8.6.1/spec/tags/default_factory_spec.rb +152 -0
  784. data/vendor/bundle/gems/yard-0.8.6.1/spec/tags/default_tag_spec.rb +11 -0
  785. data/vendor/bundle/gems/yard-0.8.6.1/spec/tags/directives_spec.rb +436 -0
  786. data/vendor/bundle/gems/yard-0.8.6.1/spec/tags/library_spec.rb +34 -0
  787. data/vendor/bundle/gems/yard-0.8.6.1/spec/tags/overload_tag_spec.rb +53 -0
  788. data/vendor/bundle/gems/yard-0.8.6.1/spec/tags/ref_tag_list_spec.rb +53 -0
  789. data/vendor/bundle/gems/yard-0.8.6.1/spec/templates/class_spec.rb +44 -0
  790. data/vendor/bundle/gems/yard-0.8.6.1/spec/templates/constant_spec.rb +40 -0
  791. data/vendor/bundle/gems/yard-0.8.6.1/spec/templates/engine_spec.rb +121 -0
  792. data/vendor/bundle/gems/yard-0.8.6.1/spec/templates/examples/class001.html +280 -0
  793. data/vendor/bundle/gems/yard-0.8.6.1/spec/templates/examples/class001.txt +36 -0
  794. data/vendor/bundle/gems/yard-0.8.6.1/spec/templates/examples/class002.html +35 -0
  795. data/vendor/bundle/gems/yard-0.8.6.1/spec/templates/examples/constant001.txt +25 -0
  796. data/vendor/bundle/gems/yard-0.8.6.1/spec/templates/examples/constant002.txt +7 -0
  797. data/vendor/bundle/gems/yard-0.8.6.1/spec/templates/examples/constant003.txt +11 -0
  798. data/vendor/bundle/gems/yard-0.8.6.1/spec/templates/examples/method001.html +130 -0
  799. data/vendor/bundle/gems/yard-0.8.6.1/spec/templates/examples/method001.txt +35 -0
  800. data/vendor/bundle/gems/yard-0.8.6.1/spec/templates/examples/method002.html +86 -0
  801. data/vendor/bundle/gems/yard-0.8.6.1/spec/templates/examples/method002.txt +20 -0
  802. data/vendor/bundle/gems/yard-0.8.6.1/spec/templates/examples/method003.html +159 -0
  803. data/vendor/bundle/gems/yard-0.8.6.1/spec/templates/examples/method003.txt +45 -0
  804. data/vendor/bundle/gems/yard-0.8.6.1/spec/templates/examples/method004.html +44 -0
  805. data/vendor/bundle/gems/yard-0.8.6.1/spec/templates/examples/method004.txt +10 -0
  806. data/vendor/bundle/gems/yard-0.8.6.1/spec/templates/examples/method005.html +99 -0
  807. data/vendor/bundle/gems/yard-0.8.6.1/spec/templates/examples/method005.txt +33 -0
  808. data/vendor/bundle/gems/yard-0.8.6.1/spec/templates/examples/module001.dot +33 -0
  809. data/vendor/bundle/gems/yard-0.8.6.1/spec/templates/examples/module001.html +791 -0
  810. data/vendor/bundle/gems/yard-0.8.6.1/spec/templates/examples/module001.txt +33 -0
  811. data/vendor/bundle/gems/yard-0.8.6.1/spec/templates/examples/module002.html +318 -0
  812. data/vendor/bundle/gems/yard-0.8.6.1/spec/templates/examples/module003.html +185 -0
  813. data/vendor/bundle/gems/yard-0.8.6.1/spec/templates/examples/module004.html +387 -0
  814. data/vendor/bundle/gems/yard-0.8.6.1/spec/templates/examples/tag001.txt +82 -0
  815. data/vendor/bundle/gems/yard-0.8.6.1/spec/templates/helpers/base_helper_spec.rb +175 -0
  816. data/vendor/bundle/gems/yard-0.8.6.1/spec/templates/helpers/html_helper_spec.rb +612 -0
  817. data/vendor/bundle/gems/yard-0.8.6.1/spec/templates/helpers/html_syntax_highlight_helper_spec.rb +48 -0
  818. data/vendor/bundle/gems/yard-0.8.6.1/spec/templates/helpers/markup/rdoc_markup_spec.rb +84 -0
  819. data/vendor/bundle/gems/yard-0.8.6.1/spec/templates/helpers/markup_helper_spec.rb +135 -0
  820. data/vendor/bundle/gems/yard-0.8.6.1/spec/templates/helpers/method_helper_spec.rb +82 -0
  821. data/vendor/bundle/gems/yard-0.8.6.1/spec/templates/helpers/shared_signature_examples.rb +123 -0
  822. data/vendor/bundle/gems/yard-0.8.6.1/spec/templates/helpers/text_helper_spec.rb +44 -0
  823. data/vendor/bundle/gems/yard-0.8.6.1/spec/templates/method_spec.rb +102 -0
  824. data/vendor/bundle/gems/yard-0.8.6.1/spec/templates/module_spec.rb +181 -0
  825. data/vendor/bundle/gems/yard-0.8.6.1/spec/templates/onefile_spec.rb +64 -0
  826. data/vendor/bundle/gems/yard-0.8.6.1/spec/templates/section_spec.rb +146 -0
  827. data/vendor/bundle/gems/yard-0.8.6.1/spec/templates/spec_helper.rb +73 -0
  828. data/vendor/bundle/gems/yard-0.8.6.1/spec/templates/tag_spec.rb +51 -0
  829. data/vendor/bundle/gems/yard-0.8.6.1/spec/templates/template_spec.rb +409 -0
  830. data/vendor/bundle/gems/yard-0.8.6.1/spec/verifier_spec.rb +106 -0
  831. data/vendor/bundle/gems/yard-0.8.6.1/templates/default/class/dot/setup.rb +6 -0
  832. data/vendor/bundle/gems/yard-0.8.6.1/templates/default/class/dot/superklass.erb +3 -0
  833. data/vendor/bundle/gems/yard-0.8.6.1/templates/default/class/html/constructor_details.erb +8 -0
  834. data/vendor/bundle/gems/yard-0.8.6.1/templates/default/class/html/setup.rb +1 -0
  835. data/vendor/bundle/gems/yard-0.8.6.1/templates/default/class/html/subclasses.erb +4 -0
  836. data/vendor/bundle/gems/yard-0.8.6.1/templates/default/class/setup.rb +36 -0
  837. data/vendor/bundle/gems/yard-0.8.6.1/templates/default/class/text/setup.rb +11 -0
  838. data/vendor/bundle/gems/yard-0.8.6.1/templates/default/class/text/subclasses.erb +5 -0
  839. data/vendor/bundle/gems/yard-0.8.6.1/templates/default/constant/text/header.erb +11 -0
  840. data/vendor/bundle/gems/yard-0.8.6.1/templates/default/constant/text/setup.rb +3 -0
  841. data/vendor/bundle/gems/yard-0.8.6.1/templates/default/docstring/html/abstract.erb +4 -0
  842. data/vendor/bundle/gems/yard-0.8.6.1/templates/default/docstring/html/deprecated.erb +1 -0
  843. data/vendor/bundle/gems/yard-0.8.6.1/templates/default/docstring/html/index.erb +5 -0
  844. data/vendor/bundle/gems/yard-0.8.6.1/templates/default/docstring/html/note.erb +6 -0
  845. data/vendor/bundle/gems/yard-0.8.6.1/templates/default/docstring/html/private.erb +4 -0
  846. data/vendor/bundle/gems/yard-0.8.6.1/templates/default/docstring/html/returns_void.erb +1 -0
  847. data/vendor/bundle/gems/yard-0.8.6.1/templates/default/docstring/html/text.erb +1 -0
  848. data/vendor/bundle/gems/yard-0.8.6.1/templates/default/docstring/html/todo.erb +6 -0
  849. data/vendor/bundle/gems/yard-0.8.6.1/templates/default/docstring/setup.rb +49 -0
  850. data/vendor/bundle/gems/yard-0.8.6.1/templates/default/docstring/text/abstract.erb +2 -0
  851. data/vendor/bundle/gems/yard-0.8.6.1/templates/default/docstring/text/deprecated.erb +2 -0
  852. data/vendor/bundle/gems/yard-0.8.6.1/templates/default/docstring/text/index.erb +2 -0
  853. data/vendor/bundle/gems/yard-0.8.6.1/templates/default/docstring/text/note.erb +4 -0
  854. data/vendor/bundle/gems/yard-0.8.6.1/templates/default/docstring/text/private.erb +2 -0
  855. data/vendor/bundle/gems/yard-0.8.6.1/templates/default/docstring/text/returns_void.erb +1 -0
  856. data/vendor/bundle/gems/yard-0.8.6.1/templates/default/docstring/text/text.erb +1 -0
  857. data/vendor/bundle/gems/yard-0.8.6.1/templates/default/docstring/text/todo.erb +4 -0
  858. data/vendor/bundle/gems/yard-0.8.6.1/templates/default/fulldoc/html/css/common.css +1 -0
  859. data/vendor/bundle/gems/yard-0.8.6.1/templates/default/fulldoc/html/css/full_list.css +57 -0
  860. data/vendor/bundle/gems/yard-0.8.6.1/templates/default/fulldoc/html/css/style.css +338 -0
  861. data/vendor/bundle/gems/yard-0.8.6.1/templates/default/fulldoc/html/frames.erb +28 -0
  862. data/vendor/bundle/gems/yard-0.8.6.1/templates/default/fulldoc/html/full_list.erb +39 -0
  863. data/vendor/bundle/gems/yard-0.8.6.1/templates/default/fulldoc/html/full_list_class.erb +2 -0
  864. data/vendor/bundle/gems/yard-0.8.6.1/templates/default/fulldoc/html/full_list_file.erb +5 -0
  865. data/vendor/bundle/gems/yard-0.8.6.1/templates/default/fulldoc/html/full_list_method.erb +8 -0
  866. data/vendor/bundle/gems/yard-0.8.6.1/templates/default/fulldoc/html/js/app.js +214 -0
  867. data/vendor/bundle/gems/yard-0.8.6.1/templates/default/fulldoc/html/js/full_list.js +178 -0
  868. data/vendor/bundle/gems/yard-0.8.6.1/templates/default/fulldoc/html/js/jquery.js +4 -0
  869. data/vendor/bundle/gems/yard-0.8.6.1/templates/default/fulldoc/html/setup.rb +199 -0
  870. data/vendor/bundle/gems/yard-0.8.6.1/templates/default/layout/dot/header.erb +6 -0
  871. data/vendor/bundle/gems/yard-0.8.6.1/templates/default/layout/dot/setup.rb +14 -0
  872. data/vendor/bundle/gems/yard-0.8.6.1/templates/default/layout/html/breadcrumb.erb +13 -0
  873. data/vendor/bundle/gems/yard-0.8.6.1/templates/default/layout/html/files.erb +11 -0
  874. data/vendor/bundle/gems/yard-0.8.6.1/templates/default/layout/html/footer.erb +5 -0
  875. data/vendor/bundle/gems/yard-0.8.6.1/templates/default/layout/html/headers.erb +14 -0
  876. data/vendor/bundle/gems/yard-0.8.6.1/templates/default/layout/html/index.erb +2 -0
  877. data/vendor/bundle/gems/yard-0.8.6.1/templates/default/layout/html/layout.erb +20 -0
  878. data/vendor/bundle/gems/yard-0.8.6.1/templates/default/layout/html/listing.erb +4 -0
  879. data/vendor/bundle/gems/yard-0.8.6.1/templates/default/layout/html/objects.erb +32 -0
  880. data/vendor/bundle/gems/yard-0.8.6.1/templates/default/layout/html/script_setup.erb +5 -0
  881. data/vendor/bundle/gems/yard-0.8.6.1/templates/default/layout/html/search.erb +8 -0
  882. data/vendor/bundle/gems/yard-0.8.6.1/templates/default/layout/html/setup.rb +71 -0
  883. data/vendor/bundle/gems/yard-0.8.6.1/templates/default/method/html/header.erb +16 -0
  884. data/vendor/bundle/gems/yard-0.8.6.1/templates/default/method/setup.rb +3 -0
  885. data/vendor/bundle/gems/yard-0.8.6.1/templates/default/method/text/header.erb +1 -0
  886. data/vendor/bundle/gems/yard-0.8.6.1/templates/default/method_details/html/header.erb +3 -0
  887. data/vendor/bundle/gems/yard-0.8.6.1/templates/default/method_details/html/method_signature.erb +25 -0
  888. data/vendor/bundle/gems/yard-0.8.6.1/templates/default/method_details/html/source.erb +10 -0
  889. data/vendor/bundle/gems/yard-0.8.6.1/templates/default/method_details/setup.rb +10 -0
  890. data/vendor/bundle/gems/yard-0.8.6.1/templates/default/method_details/text/header.erb +10 -0
  891. data/vendor/bundle/gems/yard-0.8.6.1/templates/default/method_details/text/method_signature.erb +12 -0
  892. data/vendor/bundle/gems/yard-0.8.6.1/templates/default/method_details/text/setup.rb +10 -0
  893. data/vendor/bundle/gems/yard-0.8.6.1/templates/default/module/dot/child.erb +1 -0
  894. data/vendor/bundle/gems/yard-0.8.6.1/templates/default/module/dot/dependencies.erb +3 -0
  895. data/vendor/bundle/gems/yard-0.8.6.1/templates/default/module/dot/header.erb +6 -0
  896. data/vendor/bundle/gems/yard-0.8.6.1/templates/default/module/dot/info.erb +14 -0
  897. data/vendor/bundle/gems/yard-0.8.6.1/templates/default/module/dot/setup.rb +14 -0
  898. data/vendor/bundle/gems/yard-0.8.6.1/templates/default/module/html/attribute_details.erb +10 -0
  899. data/vendor/bundle/gems/yard-0.8.6.1/templates/default/module/html/attribute_summary.erb +8 -0
  900. data/vendor/bundle/gems/yard-0.8.6.1/templates/default/module/html/box_info.erb +37 -0
  901. data/vendor/bundle/gems/yard-0.8.6.1/templates/default/module/html/children.erb +8 -0
  902. data/vendor/bundle/gems/yard-0.8.6.1/templates/default/module/html/constant_summary.erb +13 -0
  903. data/vendor/bundle/gems/yard-0.8.6.1/templates/default/module/html/defines.erb +3 -0
  904. data/vendor/bundle/gems/yard-0.8.6.1/templates/default/module/html/header.erb +5 -0
  905. data/vendor/bundle/gems/yard-0.8.6.1/templates/default/module/html/inherited_attributes.erb +14 -0
  906. data/vendor/bundle/gems/yard-0.8.6.1/templates/default/module/html/inherited_constants.erb +8 -0
  907. data/vendor/bundle/gems/yard-0.8.6.1/templates/default/module/html/inherited_methods.erb +19 -0
  908. data/vendor/bundle/gems/yard-0.8.6.1/templates/default/module/html/item_summary.erb +40 -0
  909. data/vendor/bundle/gems/yard-0.8.6.1/templates/default/module/html/method_details_list.erb +9 -0
  910. data/vendor/bundle/gems/yard-0.8.6.1/templates/default/module/html/method_summary.erb +14 -0
  911. data/vendor/bundle/gems/yard-0.8.6.1/templates/default/module/html/methodmissing.erb +12 -0
  912. data/vendor/bundle/gems/yard-0.8.6.1/templates/default/module/html/pre_docstring.erb +1 -0
  913. data/vendor/bundle/gems/yard-0.8.6.1/templates/default/module/setup.rb +164 -0
  914. data/vendor/bundle/gems/yard-0.8.6.1/templates/default/module/text/children.erb +10 -0
  915. data/vendor/bundle/gems/yard-0.8.6.1/templates/default/module/text/class_meths_list.erb +8 -0
  916. data/vendor/bundle/gems/yard-0.8.6.1/templates/default/module/text/extends.erb +8 -0
  917. data/vendor/bundle/gems/yard-0.8.6.1/templates/default/module/text/header.erb +7 -0
  918. data/vendor/bundle/gems/yard-0.8.6.1/templates/default/module/text/includes.erb +8 -0
  919. data/vendor/bundle/gems/yard-0.8.6.1/templates/default/module/text/instance_meths_list.erb +8 -0
  920. data/vendor/bundle/gems/yard-0.8.6.1/templates/default/module/text/setup.rb +12 -0
  921. data/vendor/bundle/gems/yard-0.8.6.1/templates/default/onefile/html/files.erb +5 -0
  922. data/vendor/bundle/gems/yard-0.8.6.1/templates/default/onefile/html/headers.erb +6 -0
  923. data/vendor/bundle/gems/yard-0.8.6.1/templates/default/onefile/html/layout.erb +17 -0
  924. data/vendor/bundle/gems/yard-0.8.6.1/templates/default/onefile/html/readme.erb +3 -0
  925. data/vendor/bundle/gems/yard-0.8.6.1/templates/default/onefile/html/setup.rb +61 -0
  926. data/vendor/bundle/gems/yard-0.8.6.1/templates/default/root/dot/child.erb +3 -0
  927. data/vendor/bundle/gems/yard-0.8.6.1/templates/default/root/dot/setup.rb +5 -0
  928. data/vendor/bundle/gems/yard-0.8.6.1/templates/default/root/html/setup.rb +1 -0
  929. data/vendor/bundle/gems/yard-0.8.6.1/templates/default/tags/html/example.erb +11 -0
  930. data/vendor/bundle/gems/yard-0.8.6.1/templates/default/tags/html/index.erb +3 -0
  931. data/vendor/bundle/gems/yard-0.8.6.1/templates/default/tags/html/option.erb +24 -0
  932. data/vendor/bundle/gems/yard-0.8.6.1/templates/default/tags/html/overload.erb +14 -0
  933. data/vendor/bundle/gems/yard-0.8.6.1/templates/default/tags/html/see.erb +8 -0
  934. data/vendor/bundle/gems/yard-0.8.6.1/templates/default/tags/html/tag.erb +20 -0
  935. data/vendor/bundle/gems/yard-0.8.6.1/templates/default/tags/setup.rb +55 -0
  936. data/vendor/bundle/gems/yard-0.8.6.1/templates/default/tags/text/example.erb +12 -0
  937. data/vendor/bundle/gems/yard-0.8.6.1/templates/default/tags/text/index.erb +1 -0
  938. data/vendor/bundle/gems/yard-0.8.6.1/templates/default/tags/text/option.erb +20 -0
  939. data/vendor/bundle/gems/yard-0.8.6.1/templates/default/tags/text/overload.erb +19 -0
  940. data/vendor/bundle/gems/yard-0.8.6.1/templates/default/tags/text/see.erb +11 -0
  941. data/vendor/bundle/gems/yard-0.8.6.1/templates/default/tags/text/tag.erb +13 -0
  942. data/vendor/bundle/gems/yard-0.8.6.1/templates/guide/class/html/setup.rb +1 -0
  943. data/vendor/bundle/gems/yard-0.8.6.1/templates/guide/docstring/html/setup.rb +1 -0
  944. data/vendor/bundle/gems/yard-0.8.6.1/templates/guide/fulldoc/html/css/style.css +108 -0
  945. data/vendor/bundle/gems/yard-0.8.6.1/templates/guide/fulldoc/html/js/app.js +33 -0
  946. data/vendor/bundle/gems/yard-0.8.6.1/templates/guide/fulldoc/html/setup.rb +73 -0
  947. data/vendor/bundle/gems/yard-0.8.6.1/templates/guide/layout/html/layout.erb +81 -0
  948. data/vendor/bundle/gems/yard-0.8.6.1/templates/guide/layout/html/setup.rb +28 -0
  949. data/vendor/bundle/gems/yard-0.8.6.1/templates/guide/method/html/header.erb +18 -0
  950. data/vendor/bundle/gems/yard-0.8.6.1/templates/guide/method/html/setup.rb +21 -0
  951. data/vendor/bundle/gems/yard-0.8.6.1/templates/guide/module/html/header.erb +7 -0
  952. data/vendor/bundle/gems/yard-0.8.6.1/templates/guide/module/html/method_list.erb +5 -0
  953. data/vendor/bundle/gems/yard-0.8.6.1/templates/guide/module/html/setup.rb +26 -0
  954. data/vendor/bundle/gems/yard-0.8.6.1/templates/guide/onefile/html/files.erb +4 -0
  955. data/vendor/bundle/gems/yard-0.8.6.1/templates/guide/onefile/html/setup.rb +5 -0
  956. data/vendor/bundle/gems/yard-0.8.6.1/templates/guide/onefile/html/toc.erb +3 -0
  957. data/vendor/bundle/gems/yard-0.8.6.1/templates/guide/tags/html/setup.rb +8 -0
  958. data/vendor/bundle/gems/yard-0.8.6.1/yard.gemspec +25 -0
  959. data/vendor/bundle/specifications/highline-1.6.18.gemspec +21 -0
  960. data/vendor/bundle/specifications/mime-types-1.23.gemspec +67 -0
  961. data/vendor/bundle/specifications/minitest-4.7.4.gemspec +36 -0
  962. data/vendor/bundle/specifications/multi_json-1.7.3.gemspec +30 -0
  963. data/vendor/bundle/specifications/rdiscount-2.0.7.3.gemspec +21 -0
  964. data/vendor/bundle/specifications/shoulda-3.5.0.gemspec +50 -0
  965. data/vendor/bundle/specifications/shoulda-matchers-2.1.0.gemspec +57 -0
  966. data/vendor/bundle/specifications/tilt-1.4.1.gemspec +98 -0
  967. data/vendor/bundle/specifications/yard-0.8.6.1.gemspec +20 -0
  968. metadata +964 -2
@@ -0,0 +1,1002 @@
1
+ application/1d-interleaved-parityfec 'IANA,RFC6015
2
+ application/3gpp-ims+xml 'IANA,[Meredith]
3
+ application/activemessage 'IANA,[Shapiro]
4
+ application/andrew-inset 'IANA,[Borenstein]
5
+ application/applefile :base64 'IANA,[Faltstrom]
6
+ application/atom+xml @atom :8bit 'IANA,RFC4287,RFC5023
7
+ application/atomcat+xml :8bit 'IANA,RFC5023
8
+ application/atomdeleted+xml :8bit 'IANA,RFC6721
9
+ application/atomicmail 'IANA,[Borenstein]
10
+ application/atomsvc+xml :8bit 'IANA,RFC5023
11
+ application/auth-policy+xml :8bit 'IANA,RFC4745
12
+ application/batch-SMTP 'IANA,RFC2442
13
+ application/beep+xml 'IANA,RFC3080
14
+ application/calendar+xml 'IANA,RFC6321
15
+ application/call-completion 'IANA,RFC6910
16
+ application/cals-1840 'IANA,RFC1895
17
+ application/ccmp+xml 'IANA,RFC6503
18
+ application/ccxml+xml 'IANA,RFC4267
19
+ application/cdmi-capability 'IANA,RFC6208
20
+ application/cdmi-container 'IANA,RFC6208
21
+ application/cdmi-domain 'IANA,RFC6208
22
+ application/cdmi-object 'IANA,RFC6208
23
+ application/cdmi-queue 'IANA,RFC6208
24
+ application/cea-2018+xml 'IANA,[Zimmermann]
25
+ application/cellml+xml 'IANA,RFC4708
26
+ application/cfw 'IANA,RFC6230
27
+ application/cnrp+xml 'IANA,RFC3367
28
+ application/commonground 'IANA,[Glazer]
29
+ application/conference-info+xml 'IANA,RFC4575
30
+ application/cpl+xml 'IANA,RFC3880
31
+ application/csta+xml 'IANA,[Ecma International Helpdesk]
32
+ application/CSTAdata+xml 'IANA,[Ecma International Helpdesk]
33
+ application/cybercash 'IANA,[Eastlake]
34
+ application/dash+xml 'IANA,[Stockhammer]
35
+ application/davmount+xml 'IANA,RFC4709
36
+ application/dca-rft 'IANA,[Campbell]
37
+ application/dec-dx 'IANA,[Campbell]
38
+ application/dialog-info+xml 'IANA,RFC4235
39
+ application/dicom @dcm 'IANA,RFC3240
40
+ application/dns 'IANA,RFC4027
41
+ application/dskpp+xml 'IANA,RFC6063
42
+ application/dssc+der 'IANA,RFC5698
43
+ application/dssc+xml 'IANA,RFC5698
44
+ application/dvcs 'IANA,RFC3029
45
+ application/ecmascript 'IANA,RFC4329
46
+ application/EDI-Consent 'IANA,RFC1767
47
+ application/EDI-X12 'IANA,RFC1767
48
+ application/EDIFACT 'IANA,RFC1767
49
+ application/emma+xml 'IANA,[W3C]
50
+ application/encaprtp 'IANA,RFC6849
51
+ application/epp+xml 'IANA,RFC5730
52
+ application/eshop 'IANA,[Katz]
53
+ application/example 'IANA,RFC4735
54
+ application/exi 'IANA,[W3C]
55
+ application/fastinfoset 'IANA,[ITU-T ASN.1 Rapporteur]
56
+ application/fastsoap 'IANA,[ITU-T ASN.1 Rapporteur]
57
+ application/fdt+xml 'IANA,RFC6726
58
+ application/fits 'IANA,RFC4047
59
+ application/font-tdpfr @pfr 'IANA,RFC3073
60
+ application/font-woff @woff :base64 'IANA,[W3C]
61
+ application/framework-attributes+xml 'IANA,RFC6230
62
+ application/gzip 'IANA,RFC6713
63
+ application/H224 'IANA,RFC4573
64
+ application/held+xml 'IANA,RFC5985
65
+ application/http 'IANA,RFC2616
66
+ application/hyperstudio @stk 'IANA,[Domino]
67
+ application/ibe-key-request+xml 'IANA,RFC5408
68
+ application/ibe-pkg-reply+xml 'IANA,RFC5408
69
+ application/ibe-pp-data 'IANA,RFC5408
70
+ application/iges 'IANA,[Parks]
71
+ application/im-iscomposing+xml 'IANA,RFC3994
72
+ application/index 'IANA,RFC2652
73
+ application/index.cmd 'IANA,RFC2652
74
+ application/index.obj 'IANA,RFC2652
75
+ application/index.response 'IANA,RFC2652
76
+ application/index.vnd 'IANA,RFC2652
77
+ application/inkml+xml 'IANA,[Ashimura]
78
+ application/iotp 'IANA,RFC2935
79
+ application/ipfix 'IANA,RFC5655
80
+ application/ipp 'IANA,RFC2910
81
+ application/isup 'IANA,RFC3204
82
+ application/javascript @js :8bit 'IANA,RFC4329
83
+ application/json @json :8bit 'IANA,RFC4627
84
+ application/json-patch+json 'IANA,RFC6902
85
+ application/kpml-request+xml 'IANA,RFC4730
86
+ application/kpml-response+xml 'IANA,RFC4730
87
+ application/link-format 'IANA,RFC6690
88
+ application/lost+xml 'IANA,RFC5222
89
+ application/lostsync+xml 'IANA,RFC6739
90
+ application/mac-binhex40 @hqx :8bit 'IANA,[Faltstrom]
91
+ application/macwriteii 'IANA,[Lindner]
92
+ application/mads+xml 'IANA,RFC6207
93
+ application/marc 'IANA,RFC2220
94
+ application/marcxml+xml 'IANA,RFC6207
95
+ application/mathematica 'IANA,[Wolfram]
96
+ application/mathml+xml 'IANA,[W3C]
97
+ application/mathml-content+xml 'IANA,[W3C]
98
+ application/mathml-presentation+xml 'IANA,[W3C]
99
+ application/mbms-associated-procedure-description+xml 'IANA,[3GPP]
100
+ application/mbms-deregister+xml 'IANA,[3GPP]
101
+ application/mbms-envelope+xml 'IANA,[3GPP]
102
+ application/mbms-msk+xml 'IANA,[3GPP]
103
+ application/mbms-msk-response+xml 'IANA,[3GPP]
104
+ application/mbms-protection-description+xml 'IANA,[3GPP]
105
+ application/mbms-reception-report+xml 'IANA,[3GPP]
106
+ application/mbms-register+xml 'IANA,[3GPP]
107
+ application/mbms-register-response+xml 'IANA,[3GPP]
108
+ application/mbms-user-service-description+xml 'IANA,[3GPP]
109
+ application/mbox 'IANA,RFC4155
110
+ application/media-policy-dataset+xml 'IANA,RFC6796
111
+ application/media_control+xml 'IANA,RFC5168
112
+ application/mediaservercontrol+xml 'IANA,RFC5022
113
+ application/metalink4+xml 'IANA,RFC5854
114
+ application/mets+xml 'IANA,RFC6207
115
+ application/mikey 'IANA,RFC3830
116
+ application/mods+xml 'IANA,RFC6207
117
+ application/moss-keys 'IANA,RFC1848
118
+ application/moss-signature 'IANA,RFC1848
119
+ application/mosskey-data 'IANA,RFC1848
120
+ application/mosskey-request 'IANA,RFC1848
121
+ application/mp21 'IANA,RFC6381,[Singer]
122
+ application/mp4 @mp4,mpg4 'IANA,RFC4337,RFC6381
123
+ application/mpeg4-generic 'IANA,RFC3640
124
+ application/mpeg4-iod 'IANA,RFC4337
125
+ application/mpeg4-iod-xmt 'IANA,RFC4337
126
+ application/mrb-consumer+xml 'IANA,RFC6917
127
+ application/mrb-publish+xml 'IANA,RFC6917
128
+ application/msc-ivr+xml 'IANA,RFC6231
129
+ application/msc-mixer+xml 'IANA,RFC6505
130
+ application/msword @doc,dot,wrd :base64 'IANA,[Lindner]
131
+ application/mxf @mxf 'IANA,RFC4539
132
+ application/nasdata 'IANA,RFC4707
133
+ application/news-checkgroups 'IANA,RFC5537
134
+ application/news-groupinfo 'IANA,RFC5537
135
+ application/news-transmission 'IANA,RFC5537
136
+ application/nlsml+xml 'IANA,RFC6787
137
+ application/nss 'IANA,[Hammer]
138
+ application/ocsp-request 'IANA,{RFC-ietf-pkix-rfc2560bis-20=http://tools.ietf.org/html/draft-ietf-pkix-rfc2560bis}
139
+ application/ocsp-response 'IANA,{RFC-ietf-pkix-rfc2560bis-20=http://tools.ietf.org/html/draft-ietf-pkix-rfc2560bis}
140
+ application/octet-stream @bin,dms,lha,lzh,exe,class,ani,pgp,so,dll,dylib :base64 'IANA,RFC2045,RFC2046
141
+ application/oda @oda 'IANA,RFC2045,RFC2046
142
+ application/oebps-package+xml 'IANA,RFC4839
143
+ application/ogg @ogx 'IANA,RFC5334
144
+ application/oxps 'IANA,[Ecma International Helpdesk]
145
+ application/p2p-overlay+xml 'IANA,{RFC-ietf-p2psip-base-26=http://tools.ietf.org/html/draft-ietf-p2psip-base}
146
+ application/parityfec 'IANA,RFC5109
147
+ application/patch-ops-error+xml 'IANA,RFC5261
148
+ application/pdf @pdf :base64 'IANA,RFC3778
149
+ application/pgp-encrypted :7bit 'IANA,RFC3156
150
+ application/pgp-keys :7bit 'IANA,RFC3156
151
+ application/pgp-signature @sig :base64 'IANA,RFC3156
152
+ application/pidf+xml 'IANA,RFC3863
153
+ application/pidf-diff+xml 'IANA,RFC5262
154
+ application/pkcs10 @p10 'IANA,RFC5967
155
+ application/pkcs7-mime @p7m,p7c 'IANA,RFC5751
156
+ application/pkcs7-signature @p7s 'IANA,RFC5751
157
+ application/pkcs8 'IANA,RFC5958
158
+ application/pkix-attr-cert 'IANA,RFC5877
159
+ application/pkix-cert @cer 'IANA,RFC2585
160
+ application/pkix-crl @crl 'IANA,RFC2585
161
+ application/pkix-pkipath @pkipath 'IANA,RFC6066
162
+ application/pkixcmp @pki 'IANA,RFC2510
163
+ application/pls+xml 'IANA,RFC4267
164
+ application/poc-settings+xml 'IANA,RFC4354
165
+ application/postscript @ai,eps,ps :8bit 'IANA,RFC2045,RFC2046
166
+ application/prs.alvestrand.titrax-sheet 'IANA,[Alvestrand]
167
+ application/prs.cww @cw,cww 'IANA,[Rungchavalnont]
168
+ application/prs.nprend @rnd,rct 'IANA,[Doggett]
169
+ application/prs.plucker 'IANA,[Janssen]
170
+ application/prs.rdf-xml-crypt 'IANA,[Inkster]
171
+ application/prs.xsf+xml 'IANA,[Stührenberg=Stuhrenberg]
172
+ application/pskc+xml 'IANA,RFC6030
173
+ application/qsig 'IANA,RFC3204
174
+ application/raptorfec 'IANA,RFC6682
175
+ application/rdf+xml @rdf :8bit 'IANA,RFC3870
176
+ application/reginfo+xml 'IANA,RFC3680
177
+ application/relax-ng-compact-syntax 'IANA,{ISO/IEC 19757-2:2003/FDAM-1=http://www.jtc1sc34.org/repository/0661.pdf}
178
+ application/remote-printing 'IANA,RFC1486,[Rose]
179
+ application/resource-lists+xml 'IANA,RFC4826
180
+ application/resource-lists-diff+xml 'IANA,RFC5362
181
+ application/riscos 'IANA,[Smith]
182
+ application/rlmi+xml 'IANA,RFC4662
183
+ application/rls-services+xml 'IANA,RFC4826
184
+ application/rpki-ghostbusters 'IANA,RFC6493
185
+ application/rpki-manifest 'IANA,RFC6481
186
+ application/rpki-roa 'IANA,RFC6481
187
+ application/rpki-updown 'IANA,RFC6492
188
+ application/rtf @rtf 'IANA,[Lindner]
189
+ application/rtploopback 'IANA,RFC6849
190
+ application/rtx 'IANA,RFC4588
191
+ application/samlassertion+xml 'IANA,[OASIS Security Services Technical Committee (SSTC)]
192
+ application/samlmetadata+xml 'IANA,[OASIS Security Services Technical Committee (SSTC)]
193
+ application/sbml+xml 'IANA,RFC3823
194
+ application/scvp-cv-request 'IANA,RFC5055
195
+ application/scvp-cv-response 'IANA,RFC5055
196
+ application/scvp-vp-request 'IANA,RFC5055
197
+ application/scvp-vp-response 'IANA,RFC5055
198
+ application/sdp 'IANA,RFC4566
199
+ application/sep+xml 'IANA,[Robby_Simpson=RoSimpson],[ZigBee_Alliance=ZigBee]
200
+ application/sep-exi 'IANA,[Robby_Simpson=RoSimpson],[ZigBee_Alliance=ZigBee]
201
+ application/set-payment 'IANA,[Korver]
202
+ application/set-payment-initiation 'IANA,[Korver]
203
+ application/set-registration 'IANA,[Korver]
204
+ application/set-registration-initiation 'IANA,[Korver]
205
+ application/sgml @sgml 'IANA,RFC1874
206
+ application/sgml-open-catalog @soc 'IANA,[Grosso]
207
+ application/shf+xml 'IANA,RFC4194
208
+ application/sieve @siv 'IANA,RFC5228
209
+ application/simple-filter+xml 'IANA,RFC4661
210
+ application/simple-message-summary 'IANA,RFC3842
211
+ application/simpleSymbolContainer 'IANA,[3GPP]
212
+ application/slate 'IANA,[Crowley]
213
+ application/smil+xml @smi,smil :8bit 'IANA,RFC4536
214
+ application/smpte336m 'IANA,RFC6597
215
+ application/soap+fastinfoset 'IANA,[ITU-T ASN.1 Rapporteur]
216
+ application/soap+xml 'IANA,RFC3902
217
+ application/sparql-query 'IANA,[W3C]
218
+ application/sparql-results+xml 'IANA,[W3C]
219
+ application/spirits-event+xml 'IANA,RFC3910
220
+ application/sql 'IANA,RFC6922
221
+ application/srgs 'IANA,RFC4267
222
+ application/srgs+xml 'IANA,RFC4267
223
+ application/sru+xml 'IANA,RFC6207
224
+ application/ssml+xml 'IANA,RFC4267
225
+ application/tamp-apex-update 'IANA,RFC5934
226
+ application/tamp-apex-update-confirm 'IANA,RFC5934
227
+ application/tamp-community-update 'IANA,RFC5934
228
+ application/tamp-community-update-confirm 'IANA,RFC5934
229
+ application/tamp-error 'IANA,RFC5934
230
+ application/tamp-sequence-adjust 'IANA,RFC5934
231
+ application/tamp-sequence-adjust-confirm 'IANA,RFC5934
232
+ application/tamp-status-query 'IANA,RFC5934
233
+ application/tamp-status-response 'IANA,RFC5934
234
+ application/tamp-update 'IANA,RFC5934
235
+ application/tamp-update-confirm 'IANA,RFC5934
236
+ application/tei+xml 'IANA,RFC6129
237
+ application/thraud+xml 'IANA,RFC5941
238
+ application/timestamp-query 'IANA,RFC3161
239
+ application/timestamp-reply 'IANA,RFC3161
240
+ application/timestamped-data 'IANA,RFC5955
241
+ application/tve-trigger 'IANA,[Welsh]
242
+ application/ulpfec 'IANA,RFC5109
243
+ application/urc-ressheet+xml 'IANA,[Zimmermann]
244
+ application/vcard+xml 'IANA,RFC6351
245
+ application/vemmi 'IANA,RFC2122
246
+ application/vnd.3gpp.bsf+xml 'IANA,[Meredith]
247
+ application/vnd.3gpp.pic-bw-large @plb 'IANA,[Meredith]
248
+ application/vnd.3gpp.pic-bw-small @psb 'IANA,[Meredith]
249
+ application/vnd.3gpp.pic-bw-var @pvb 'IANA,[Meredith]
250
+ application/vnd.3gpp.sms @sms 'IANA,[Meredith]
251
+ application/vnd.3gpp2.bcmcsinfo+xml 'IANA,[Dryden]
252
+ application/vnd.3gpp2.sms 'IANA,[Mahendran]
253
+ application/vnd.3gpp2.tcap 'IANA,[Mahendran]
254
+ application/vnd.3M.Post-it-Notes 'IANA,[O'Brien]
255
+ application/vnd.accpac.simply.aso 'IANA,[Leow]
256
+ application/vnd.accpac.simply.imp 'IANA,[Leow]
257
+ application/vnd.acucobol 'IANA,[Lubin]
258
+ application/vnd.acucorp @atc,acutc :7bit 'IANA,[Lubin]
259
+ application/vnd.adobe.formscentral.fcdt 'IANA,[Solc]
260
+ application/vnd.adobe.fxp 'IANA,[Brambley],[Heintz]
261
+ application/vnd.adobe.partial-upload 'IANA,[Otala]
262
+ application/vnd.adobe.xdp+xml 'IANA,[Brinkman]
263
+ application/vnd.adobe.xfdf @xfdf 'IANA,[Perelman]
264
+ application/vnd.aether.imp 'IANA,[Moskowitz]
265
+ application/vnd.ah-barcode 'IANA,[Ichinose]
266
+ application/vnd.ahead.space 'IANA,[Kristensen]
267
+ application/vnd.airzip.filesecure.azf 'IANA,[Mould],[Clueit]
268
+ application/vnd.airzip.filesecure.azs 'IANA,[Mould],[Clueit]
269
+ application/vnd.americandynamics.acc 'IANA,[Sands]
270
+ application/vnd.amiga.ami @ami 'IANA,[Blumberg]
271
+ application/vnd.amundsen.maze+xml 'IANA,[Amundsen]
272
+ application/vnd.anser-web-certificate-issue-initiation 'IANA,[Mori]
273
+ application/vnd.antix.game-component 'IANA,[Shelton]
274
+ application/vnd.apple.installer+xml 'IANA,[Bierman]
275
+ application/vnd.apple.mpegurl 'IANA,[Singer],[Pantos]
276
+ application/vnd.aristanetworks.swi 'IANA,[Fenner]
277
+ application/vnd.astraea-software.iota 'IANA,[Snazell]
278
+ application/vnd.audiograph 'IANA,[Slusanschi]
279
+ application/vnd.autopackage 'IANA,[Hearn]
280
+ application/vnd.avistar+xml 'IANA,[Vysotsky]
281
+ application/vnd.balsamiq.bmml+xml 'IANA,[Giacomo_Guilizzoni]
282
+ application/vnd.blueice.multipass @mpm 'IANA,[Holmstrom]
283
+ application/vnd.bluetooth.ep.oob 'IANA,[Foley]
284
+ application/vnd.bmi 'IANA,[Gotoh]
285
+ application/vnd.businessobjects 'IANA,[Imoucha]
286
+ application/vnd.cab-jscript 'IANA,[Falkenberg]
287
+ application/vnd.canon-cpdl 'IANA,[Muto]
288
+ application/vnd.canon-lips 'IANA,[Muto]
289
+ application/vnd.cendio.thinlinc.clientconf 'IANA,[Åstrand=Astrand]
290
+ application/vnd.century-systems.tcp_stream 'IANA,[Shuji Fujii=Shuji_Fujii]
291
+ application/vnd.chemdraw+xml 'IANA,[Howes]
292
+ application/vnd.chipnuts.karaoke-mmd 'IANA,[Xiong]
293
+ application/vnd.cinderella @cdy 'IANA,[Kortenkamp]
294
+ application/vnd.cirpack.isdn-ext 'IANA,[Mayeux]
295
+ application/vnd.claymore 'IANA,[Simpson]
296
+ application/vnd.cloanto.rp9 'IANA,[Labatt]
297
+ application/vnd.clonk.c4group 'IANA,[Brammer]
298
+ application/vnd.cluetrust.cartomobile-config 'IANA,[Paulsen]
299
+ application/vnd.cluetrust.cartomobile-config-pkg 'IANA,[Paulsen]
300
+ application/vnd.collection+json 'IANA,[Amundsen]
301
+ application/vnd.collection.next+json 'IANA,[Ioseb Dzmanashvili=Ioseb_Dzmanashvili]
302
+ application/vnd.commerce-battelle 'IANA,[Applebaum]
303
+ application/vnd.commonspace 'IANA,[Chandhok]
304
+ application/vnd.contact.cmsg 'IANA,[Patz]
305
+ application/vnd.cosmocaller @cmc 'IANA,[Dellutri]
306
+ application/vnd.crick.clicker 'IANA,[Burt]
307
+ application/vnd.crick.clicker.keyboard 'IANA,[Burt]
308
+ application/vnd.crick.clicker.palette 'IANA,[Burt]
309
+ application/vnd.crick.clicker.template 'IANA,[Burt]
310
+ application/vnd.crick.clicker.wordbank 'IANA,[Burt]
311
+ application/vnd.criticaltools.wbs+xml @wbs 'IANA,[Spiller]
312
+ application/vnd.ctc-posml 'IANA,[Kohlhepp]
313
+ application/vnd.ctct.ws+xml 'IANA,[Ancona]
314
+ application/vnd.cups-pdf 'IANA,[Sweet]
315
+ application/vnd.cups-postscript 'IANA,[Sweet]
316
+ application/vnd.cups-ppd 'IANA,[Sweet]
317
+ application/vnd.cups-raster 'IANA,[Sweet]
318
+ application/vnd.cups-raw 'IANA,[Sweet]
319
+ application/vnd.curl @curl 'IANA,[Byrnes]
320
+ application/vnd.cyan.dean.root+xml 'IANA,[Kern]
321
+ application/vnd.cybank 'IANA,[Helmee]
322
+ application/vnd.dart 'IANA,[Sandholm]
323
+ application/vnd.data-vision.rdz @rdz 'IANA,[Fields]
324
+ application/vnd.dece.data 'IANA,[Dolan]
325
+ application/vnd.dece.ttml+xml 'IANA,[Dolan]
326
+ application/vnd.dece.unspecified 'IANA,[Dolan]
327
+ application/vnd.dece.zip 'IANA,[Dolan]
328
+ application/vnd.denovo.fcselayout-link 'IANA,[Dixon]
329
+ application/vnd.desmume.movie 'IANA,[Andersson]
330
+ application/vnd.dir-bi.plate-dl-nosuffix 'IANA,[Yamanaka]
331
+ application/vnd.dm.delegation+xml 'IANA,[Ferrazzini]
332
+ application/vnd.dna 'IANA,[Searcy]
333
+ application/vnd.dolby.mobile.1 'IANA,[Hattersley]
334
+ application/vnd.dolby.mobile.2 'IANA,[Hattersley]
335
+ application/vnd.dpgraph 'IANA,[Parker]
336
+ application/vnd.dreamfactory @dfac 'IANA,[Appleton]
337
+ application/vnd.dtg.local 'IANA,[Ali_Teffahi]
338
+ application/vnd.dtg.local.flash 'IANA,[Ali_Teffahi]
339
+ application/vnd.dtg.local.html 'IANA,[Ali_Teffahi]
340
+ application/vnd.dvb.ait 'IANA,[Siebert],[Lagally]
341
+ application/vnd.dvb.dvbj 'IANA,[Siebert],[Lagally]
342
+ application/vnd.dvb.esgcontainer 'IANA,[Heuer]
343
+ application/vnd.dvb.ipdcdftnotifaccess 'IANA,[Yue]
344
+ application/vnd.dvb.ipdcesgaccess 'IANA,[Heuer]
345
+ application/vnd.dvb.ipdcesgaccess2 'IANA,[Marcon]
346
+ application/vnd.dvb.ipdcesgpdd 'IANA,[Marcon]
347
+ application/vnd.dvb.ipdcroaming 'IANA,[Xu]
348
+ application/vnd.dvb.iptv.alfec-base 'IANA,[Henry]
349
+ application/vnd.dvb.iptv.alfec-enhancement 'IANA,[Henry]
350
+ application/vnd.dvb.notif-aggregate-root+xml 'IANA,[Yue]
351
+ application/vnd.dvb.notif-container+xml 'IANA,[Yue]
352
+ application/vnd.dvb.notif-generic+xml 'IANA,[Yue]
353
+ application/vnd.dvb.notif-ia-msglist+xml 'IANA,[Yue]
354
+ application/vnd.dvb.notif-ia-registration-request+xml 'IANA,[Yue]
355
+ application/vnd.dvb.notif-ia-registration-response+xml 'IANA,[Yue]
356
+ application/vnd.dvb.notif-init+xml 'IANA,[Yue]
357
+ application/vnd.dvb.pfr 'IANA,[Siebert],[Lagally]
358
+ application/vnd.dvb.service 'IANA,[Siebert],[Lagally]
359
+ application/vnd.dxr 'IANA,[Duffy]
360
+ application/vnd.dynageo 'IANA,[Mechling]
361
+ application/vnd.easykaraoke.cdgdownload 'IANA,[Downs]
362
+ application/vnd.ecdis-update 'IANA,[Buettgenbach]
363
+ application/vnd.ecowin.chart 'IANA,[Olsson]
364
+ application/vnd.ecowin.filerequest 'IANA,[Olsson]
365
+ application/vnd.ecowin.fileupdate 'IANA,[Olsson]
366
+ application/vnd.ecowin.series 'IANA,[Olsson]
367
+ application/vnd.ecowin.seriesrequest 'IANA,[Olsson]
368
+ application/vnd.ecowin.seriesupdate 'IANA,[Olsson]
369
+ application/vnd.emclient.accessrequest+xml 'IANA,[Navara]
370
+ application/vnd.enliven 'IANA,[Santinelli]
371
+ application/vnd.eprints.data+xml 'IANA,[Brody]
372
+ application/vnd.epson.esf 'IANA,[Hoshina]
373
+ application/vnd.epson.msf 'IANA,[Hoshina]
374
+ application/vnd.epson.quickanime 'IANA,[Gu]
375
+ application/vnd.epson.salt 'IANA,[Nagatomo]
376
+ application/vnd.epson.ssf 'IANA,[Hoshina]
377
+ application/vnd.ericsson.quickcall 'IANA,[Tidwell]
378
+ application/vnd.eszigno3+xml 'IANA,[Tóth=Toth]
379
+ application/vnd.etsi.aoc+xml 'IANA,[Hu]
380
+ application/vnd.etsi.cug+xml 'IANA,[Hu]
381
+ application/vnd.etsi.iptvcommand+xml 'IANA,[Hu]
382
+ application/vnd.etsi.iptvdiscovery+xml 'IANA,[Hu]
383
+ application/vnd.etsi.iptvprofile+xml 'IANA,[Hu]
384
+ application/vnd.etsi.iptvsad-bc+xml 'IANA,[Hu]
385
+ application/vnd.etsi.iptvsad-cod+xml 'IANA,[Hu]
386
+ application/vnd.etsi.iptvsad-npvr+xml 'IANA,[Hu]
387
+ application/vnd.etsi.iptvservice+xml 'IANA,[Ortega]
388
+ application/vnd.etsi.iptvsync+xml 'IANA,[Ortega]
389
+ application/vnd.etsi.iptvueprofile+xml 'IANA,[Hu]
390
+ application/vnd.etsi.mcid+xml 'IANA,[Hu]
391
+ application/vnd.etsi.mheg5 'IANA,[Ortega],[Medland]
392
+ application/vnd.etsi.overload-control-policy-dataset+xml 'IANA,[Ortega]
393
+ application/vnd.etsi.sci+xml 'IANA,[Hu]
394
+ application/vnd.etsi.simservs+xml 'IANA,[Hu]
395
+ application/vnd.etsi.tsl+xml 'IANA,[Hu]
396
+ application/vnd.etsi.tsl.der 'IANA,[Hu]
397
+ application/vnd.eudora.data 'IANA,[Resnick]
398
+ application/vnd.ezpix-album 'IANA,[Electronic Zombie, Corp.=ElectronicZombieCorp]
399
+ application/vnd.ezpix-package 'IANA,[Electronic Zombie, Corp.=ElectronicZombieCorp]
400
+ application/vnd.f-secure.mobile 'IANA,[Sarivaara]
401
+ application/vnd.fdf 'IANA,[Zilles]
402
+ application/vnd.fdsn.mseed 'IANA,[Trabant]
403
+ application/vnd.fdsn.seed 'IANA,[Trabant]
404
+ application/vnd.ffsns 'IANA,[Holstage]
405
+ application/vnd.fints 'IANA,[Hammann]
406
+ application/vnd.FloGraphIt 'IANA,[Floersch]
407
+ application/vnd.fluxtime.clip 'IANA,[Winter]
408
+ application/vnd.font-fontforge-sfd 'IANA,[Williams]
409
+ application/vnd.framemaker @frm,maker,frame,fm,fb,book,fbdoc 'IANA,[Wexler]
410
+ application/vnd.frogans.fnc 'IANA,[Tamas]
411
+ application/vnd.frogans.ltf 'IANA,[Tamas]
412
+ application/vnd.fsc.weblaunch @fsc :7bit 'IANA,[D.Smith]
413
+ application/vnd.fujitsu.oasys 'IANA,[Togashi]
414
+ application/vnd.fujitsu.oasys2 'IANA,[Togashi]
415
+ application/vnd.fujitsu.oasys3 'IANA,[Okudaira]
416
+ application/vnd.fujitsu.oasysgp 'IANA,[Sugimoto]
417
+ application/vnd.fujitsu.oasysprs 'IANA,[Ogita]
418
+ application/vnd.fujixerox.ART-EX 'IANA,[Tanabe]
419
+ application/vnd.fujixerox.ART4 'IANA,[Tanabe]
420
+ application/vnd.fujixerox.ddd 'IANA,[Onda]
421
+ application/vnd.fujixerox.docuworks 'IANA,[Taguchi]
422
+ application/vnd.fujixerox.docuworks.binder 'IANA,[Matsumoto]
423
+ application/vnd.fujixerox.HBPL 'IANA,[Tanabe]
424
+ application/vnd.fut-misnet 'IANA,[Pruulmann]
425
+ application/vnd.fuzzysheet 'IANA,[Birtwistle]
426
+ application/vnd.genomatix.tuxedo @txd 'IANA,[Frey]
427
+ application/vnd.geogebra.file 'IANA,[GeoGebra],[Kreis]
428
+ application/vnd.geogebra.tool 'IANA,[GeoGebra],[Kreis]
429
+ application/vnd.geometry-explorer 'IANA,[Hvidsten]
430
+ application/vnd.geonext 'IANA,[Ehmann]
431
+ application/vnd.geoplan 'IANA,[Mercat]
432
+ application/vnd.geospace 'IANA,[Mercat]
433
+ application/vnd.globalplatform.card-content-mgt 'IANA,[Bernabeu]
434
+ application/vnd.globalplatform.card-content-mgt-response 'IANA,[Bernabeu]
435
+ application/vnd.google-earth.kml+xml @kml :8bit 'IANA,[Ashbridge]
436
+ application/vnd.google-earth.kmz @kmz :8bit 'IANA,[Ashbridge]
437
+ application/vnd.grafeq 'IANA,[Tupper]
438
+ application/vnd.gridmp 'IANA,[Lawson]
439
+ application/vnd.groove-account 'IANA,[Joseph]
440
+ application/vnd.groove-help 'IANA,[Joseph]
441
+ application/vnd.groove-identity-message 'IANA,[Joseph]
442
+ application/vnd.groove-injector 'IANA,[Joseph]
443
+ application/vnd.groove-tool-message 'IANA,[Joseph]
444
+ application/vnd.groove-tool-template 'IANA,[Joseph]
445
+ application/vnd.groove-vcard 'IANA,[Joseph]
446
+ application/vnd.hal+json 'IANA,[Kelly]
447
+ application/vnd.hal+xml 'IANA,[Kelly]
448
+ application/vnd.HandHeld-Entertainment+xml 'IANA,[Hamilton]
449
+ application/vnd.hbci @hbci,hbc,kom,upa,pkd,bpd 'IANA,[Hammann]
450
+ application/vnd.hcl-bireports 'IANA,[Serres]
451
+ application/vnd.hhe.lesson-player @les 'IANA,[Jones]
452
+ application/vnd.hp-HPGL @plt,hpgl 'IANA,[Pentecost]
453
+ application/vnd.hp-hpid 'IANA,[Gupta]
454
+ application/vnd.hp-hps 'IANA,[Aubrey]
455
+ application/vnd.hp-jlyt 'IANA,[Gaash]
456
+ application/vnd.hp-PCL 'IANA,[Pentecost]
457
+ application/vnd.hp-PCLXL 'IANA,[Pentecost]
458
+ application/vnd.httphone 'IANA,[Lefevre]
459
+ application/vnd.hydrostatix.sof-data 'IANA,[Gillam]
460
+ application/vnd.hzn-3d-crossword 'IANA,[Minnis]
461
+ application/vnd.ibm.afplinedata 'IANA,[Buis]
462
+ application/vnd.ibm.electronic-media @emm 'IANA,[Tantlinger]
463
+ application/vnd.ibm.MiniPay 'IANA,[Herzberg]
464
+ application/vnd.ibm.modcap 'IANA,[Hohensee]
465
+ application/vnd.ibm.rights-management @irm 'IANA,[Tantlinger]
466
+ application/vnd.ibm.secure-container @sc 'IANA,[Tantlinger]
467
+ application/vnd.iccprofile 'IANA,[Green]
468
+ application/vnd.ieee.1905 'IANA,[Rajkotia]
469
+ application/vnd.igloader 'IANA,[Fisher]
470
+ application/vnd.immervision-ivp 'IANA,[Villegas]
471
+ application/vnd.immervision-ivu 'IANA,[Villegas]
472
+ application/vnd.informedcontrol.rms+xml 'IANA,[Wahl]
473
+ application/vnd.informix-visionary 'IANA,[Gales]
474
+ application/vnd.infotech.project 'IANA,[Engelke]
475
+ application/vnd.infotech.project+xml 'IANA,[Engelke]
476
+ application/vnd.innopath.wamp.notification 'IANA,[Sudo]
477
+ application/vnd.insors.igm 'IANA,[Swanson]
478
+ application/vnd.intercon.formnet 'IANA,[Gurak]
479
+ application/vnd.intergeo 'IANA,[Kreis=Kreis2]
480
+ application/vnd.intertrust.digibox 'IANA,[Tomasello]
481
+ application/vnd.intertrust.nncp 'IANA,[Tomasello]
482
+ application/vnd.intu.qbo 'IANA,[Scratchley]
483
+ application/vnd.intu.qfx 'IANA,[Scratchley]
484
+ application/vnd.iptc.g2.conceptitem+xml 'IANA,[Steidl]
485
+ application/vnd.iptc.g2.knowledgeitem+xml 'IANA,[Steidl]
486
+ application/vnd.iptc.g2.newsitem+xml 'IANA,[Steidl]
487
+ application/vnd.iptc.g2.newsmessage+xml 'IANA,[Steidl]
488
+ application/vnd.iptc.g2.packageitem+xml 'IANA,[Steidl]
489
+ application/vnd.iptc.g2.planningitem+xml 'IANA,[Steidl]
490
+ application/vnd.ipunplugged.rcprofile @rcprofile 'IANA,[Ersson]
491
+ application/vnd.irepository.package+xml @irp 'IANA,[Knowles]
492
+ application/vnd.is-xpr 'IANA,[Natarajan]
493
+ application/vnd.isac.fcs 'IANA,[RBrinkman]
494
+ application/vnd.jam 'IANA,[B.Kumar]
495
+ application/vnd.japannet-directory-service 'IANA,[Fujii]
496
+ application/vnd.japannet-jpnstore-wakeup 'IANA,[Yoshitake]
497
+ application/vnd.japannet-payment-wakeup 'IANA,[Fujii]
498
+ application/vnd.japannet-registration 'IANA,[Yoshitake]
499
+ application/vnd.japannet-registration-wakeup 'IANA,[Fujii]
500
+ application/vnd.japannet-setstore-wakeup 'IANA,[Yoshitake]
501
+ application/vnd.japannet-verification 'IANA,[Yoshitake]
502
+ application/vnd.japannet-verification-wakeup 'IANA,[Fujii]
503
+ application/vnd.jcp.javame.midlet-rms 'IANA,[Gorshenev]
504
+ application/vnd.jisp @jisp 'IANA,[Deckers]
505
+ application/vnd.joost.joda-archive 'IANA,[Joost]
506
+ application/vnd.jsk.isdn-ngn 'IANA,[Kiyonobu]
507
+ application/vnd.kahootz 'IANA,[Macdonald]
508
+ application/vnd.kde.karbon @karbon 'IANA,[Faure]
509
+ application/vnd.kde.kchart @chrt 'IANA,[Faure]
510
+ application/vnd.kde.kformula @kfo 'IANA,[Faure]
511
+ application/vnd.kde.kivio @flw 'IANA,[Faure]
512
+ application/vnd.kde.kontour @kon 'IANA,[Faure]
513
+ application/vnd.kde.kpresenter @kpr,kpt 'IANA,[Faure]
514
+ application/vnd.kde.kspread @ksp 'IANA,[Faure]
515
+ application/vnd.kde.kword @kwd,kwt 'IANA,[Faure]
516
+ application/vnd.kenameaapp @htke 'IANA,[DiGiorgio-Haag]
517
+ application/vnd.kidspiration @kia 'IANA,[Bennett]
518
+ application/vnd.Kinar @kne,knp,sdf 'IANA,[Thakkar]
519
+ application/vnd.koan 'IANA,[Cole]
520
+ application/vnd.kodak-descriptor 'IANA,[Donahue]
521
+ application/vnd.las.las+xml 'IANA,[Bailey=RBailey]
522
+ application/vnd.liberty-request+xml 'IANA,[McDowell]
523
+ application/vnd.llamagraphics.life-balance.desktop @lbd 'IANA,[White]
524
+ application/vnd.llamagraphics.life-balance.exchange+xml @lbe 'IANA,[White]
525
+ application/vnd.lotus-1-2-3 @wks,123 'IANA,[Wattenberger]
526
+ application/vnd.lotus-approach 'IANA,[Wattenberger]
527
+ application/vnd.lotus-freelance 'IANA,[Wattenberger]
528
+ application/vnd.lotus-notes 'IANA,[Laramie]
529
+ application/vnd.lotus-organizer 'IANA,[Wattenberger]
530
+ application/vnd.lotus-screencam 'IANA,[Wattenberger]
531
+ application/vnd.lotus-wordpro 'IANA,[Wattenberger]
532
+ application/vnd.macports.portpkg 'IANA,[Berry]
533
+ application/vnd.marlin.drm.actiontoken+xml 'IANA,[Ellison]
534
+ application/vnd.marlin.drm.conftoken+xml 'IANA,[Ellison]
535
+ application/vnd.marlin.drm.license+xml 'IANA,[Ellison]
536
+ application/vnd.marlin.drm.mdcf 'IANA,[Ellison]
537
+ application/vnd.mcd @mcd 'IANA,[Gotoh]
538
+ application/vnd.medcalcdata 'IANA,[Schoonjans]
539
+ application/vnd.mediastation.cdkey 'IANA,[Flurry]
540
+ application/vnd.meridian-slingshot 'IANA,[Wedel]
541
+ application/vnd.MFER 'IANA,[Hirai]
542
+ application/vnd.mfmp @mfm 'IANA,[Ikeda]
543
+ application/vnd.micrografx.flo @flo 'IANA,[Prevo]
544
+ application/vnd.micrografx.igx @igx 'IANA,[Prevo]
545
+ application/vnd.mif @mif 'IANA,[Wexler]
546
+ application/vnd.minisoft-hp3000-save 'IANA,[Bartram]
547
+ application/vnd.mitsubishi.misty-guard.trustweb 'IANA,[Tanaka]
548
+ application/vnd.Mobius.DAF 'IANA,[Kabayama]
549
+ application/vnd.Mobius.DIS 'IANA,[Kabayama]
550
+ application/vnd.Mobius.MBK 'IANA,[Devasia]
551
+ application/vnd.Mobius.MQY 'IANA,[Devasia]
552
+ application/vnd.Mobius.MSL 'IANA,[Kabayama]
553
+ application/vnd.Mobius.PLC 'IANA,[Kabayama]
554
+ application/vnd.Mobius.TXF 'IANA,[Kabayama]
555
+ application/vnd.mophun.application @mpn 'IANA,[Wennerstrom]
556
+ application/vnd.mophun.certificate @mpc 'IANA,[Wennerstrom]
557
+ application/vnd.motorola.flexsuite 'IANA,[Patton]
558
+ application/vnd.motorola.flexsuite.adsi 'IANA,[Patton]
559
+ application/vnd.motorola.flexsuite.fis 'IANA,[Patton]
560
+ application/vnd.motorola.flexsuite.gotap 'IANA,[Patton]
561
+ application/vnd.motorola.flexsuite.kmr 'IANA,[Patton]
562
+ application/vnd.motorola.flexsuite.ttc 'IANA,[Patton]
563
+ application/vnd.motorola.flexsuite.wem 'IANA,[Patton]
564
+ application/vnd.motorola.iprm 'IANA,[Shamsaasef]
565
+ application/vnd.mozilla.xul+xml @xul 'IANA,[McDaniel]
566
+ application/vnd.ms-artgalry @cil 'IANA,[Slawson]
567
+ application/vnd.ms-asf @asf 'IANA,[Fleischman]
568
+ application/vnd.ms-cab-compressed @cab 'IANA,[Scarborough]
569
+ application/vnd.ms-excel @xls,xlt :base64 'IANA,[Gill]
570
+ application/vnd.ms-excel.addin.macroEnabled.12 'IANA,[Rae]
571
+ application/vnd.ms-excel.sheet.binary.macroEnabled.12 @xlsb 'IANA,[Rae]
572
+ application/vnd.ms-excel.sheet.macroEnabled.12 @xlsm 'IANA,[Rae]
573
+ application/vnd.ms-excel.template.macroEnabled.12 'IANA,[Rae]
574
+ application/vnd.ms-fontobject 'IANA,[Scarborough]
575
+ application/vnd.ms-htmlhelp 'IANA,[Techtonik]
576
+ application/vnd.ms-ims 'IANA,[Ledoux]
577
+ application/vnd.ms-lrm @lrm 'IANA,[Ledoux]
578
+ application/vnd.ms-office.activeX+xml 'IANA,[Rae]
579
+ application/vnd.ms-officetheme 'IANA,[Rae]
580
+ application/vnd.ms-playready.initiator+xml 'IANA,[Schneider]
581
+ application/vnd.ms-powerpoint @ppt,pps,pot :base64 'IANA,[Gill]
582
+ application/vnd.ms-powerpoint.addin.macroEnabled.12 'IANA,[Rae]
583
+ application/vnd.ms-powerpoint.presentation.macroEnabled.12 'IANA,[Rae]
584
+ application/vnd.ms-powerpoint.slide.macroEnabled.12 'IANA,[Rae]
585
+ application/vnd.ms-powerpoint.slideshow.macroEnabled.12 'IANA,[Rae]
586
+ application/vnd.ms-powerpoint.template.macroEnabled.12 @potm 'IANA,[Rae]
587
+ application/vnd.ms-project @mpp :base64 'IANA,[Gill]
588
+ application/vnd.ms-tnef :base64 'IANA,[Gill]
589
+ application/vnd.ms-windows.printerpairing 'IANA,[Hutchings]
590
+ application/vnd.ms-wmdrm.lic-chlg-req 'IANA,[Lau]
591
+ application/vnd.ms-wmdrm.lic-resp 'IANA,[Lau]
592
+ application/vnd.ms-wmdrm.meter-chlg-req 'IANA,[Lau]
593
+ application/vnd.ms-wmdrm.meter-resp 'IANA,[Lau]
594
+ application/vnd.ms-word.document.macroEnabled.12 'IANA,[Rae]
595
+ application/vnd.ms-word.template.macroEnabled.12 'IANA,[Rae]
596
+ application/vnd.ms-works :base64 'IANA,[Gill]
597
+ application/vnd.ms-wpl @wpl :base64 'IANA,[Plastina]
598
+ application/vnd.ms-xpsdocument @xps :8bit 'IANA,[McGatha]
599
+ application/vnd.mseq @mseq 'IANA,[Le Bodic]
600
+ application/vnd.msign 'IANA,[Borcherding]
601
+ application/vnd.multiad.creator 'IANA,[Mills]
602
+ application/vnd.multiad.creator.cif 'IANA,[Mills]
603
+ application/vnd.music-niff 'IANA,[Butler]
604
+ application/vnd.musician 'IANA,[Adams]
605
+ application/vnd.muvee.style 'IANA,[Anantharamu]
606
+ application/vnd.mynfc 'IANA,[Lefevre]
607
+ application/vnd.ncd.control 'IANA,[Tarkkala]
608
+ application/vnd.ncd.reference 'IANA,[Tarkkala]
609
+ application/vnd.nervana @ent,entity,req,request,bkm,kcm 'IANA,[Judkins]
610
+ application/vnd.netfpx 'IANA,[Mutz]
611
+ application/vnd.neurolanguage.nlu 'IANA,[DuFeu]
612
+ application/vnd.nintendo.nitro.rom 'IANA,[Andersson]
613
+ application/vnd.nitf 'IANA,[Rogan]
614
+ application/vnd.noblenet-directory 'IANA,[Solomon]
615
+ application/vnd.noblenet-sealer 'IANA,[Solomon]
616
+ application/vnd.noblenet-web 'IANA,[Solomon]
617
+ application/vnd.nokia.catalogs 'IANA,[Nokia]
618
+ application/vnd.nokia.conml+wbxml 'IANA,[Nokia]
619
+ application/vnd.nokia.conml+xml 'IANA,[Nokia]
620
+ application/vnd.nokia.iptv.config+xml 'IANA,[Nokia]
621
+ application/vnd.nokia.iSDS-radio-presets 'IANA,[Nokia]
622
+ application/vnd.nokia.landmark+wbxml 'IANA,[Nokia]
623
+ application/vnd.nokia.landmark+xml 'IANA,[Nokia]
624
+ application/vnd.nokia.landmarkcollection+xml 'IANA,[Nokia]
625
+ application/vnd.nokia.n-gage.ac+xml 'IANA,[Nokia]
626
+ application/vnd.nokia.n-gage.data 'IANA,[Nokia]
627
+ application/vnd.nokia.n-gage.symbian.install 'IANA,[Nokia]
628
+ application/vnd.nokia.ncd 'IANA,[Nokia]
629
+ application/vnd.nokia.pcd+wbxml 'IANA,[Nokia]
630
+ application/vnd.nokia.pcd+xml 'IANA,[Nokia]
631
+ application/vnd.nokia.radio-preset @rpst 'IANA,[Nokia]
632
+ application/vnd.nokia.radio-presets @rpss 'IANA,[Nokia]
633
+ application/vnd.novadigm.EDM 'IANA,[Swenson]
634
+ application/vnd.novadigm.EDX 'IANA,[Swenson]
635
+ application/vnd.novadigm.EXT 'IANA,[Swenson]
636
+ application/vnd.ntt-local.content-share 'IANA,[Taya]
637
+ application/vnd.ntt-local.file-transfer 'IANA,[NTT-local]
638
+ application/vnd.ntt-local.sip-ta_remote 'IANA,[NTT-local]
639
+ application/vnd.ntt-local.sip-ta_tcp_stream 'IANA,[NTT-local]
640
+ application/vnd.oasis.opendocument.chart @odc 'IANA,[Oppermann]
641
+ application/vnd.oasis.opendocument.chart-template @odc 'IANA,[Oppermann]
642
+ application/vnd.oasis.opendocument.database @odb 'IANA,[Schubert],[Oasis OpenDocument TC=OASIS OpenDocumentTC]
643
+ application/vnd.oasis.opendocument.formula @odf 'IANA,[Oppermann]
644
+ application/vnd.oasis.opendocument.formula-template @odf 'IANA,[Oppermann]
645
+ application/vnd.oasis.opendocument.graphics @odg 'IANA,[Oppermann]
646
+ application/vnd.oasis.opendocument.graphics-template @otg 'IANA,[Oppermann]
647
+ application/vnd.oasis.opendocument.image @odi 'IANA,[Oppermann]
648
+ application/vnd.oasis.opendocument.image-template @odi 'IANA,[Oppermann]
649
+ application/vnd.oasis.opendocument.presentation @odp 'IANA,[Oppermann]
650
+ application/vnd.oasis.opendocument.presentation-template @otp 'IANA,[Oppermann]
651
+ application/vnd.oasis.opendocument.spreadsheet @ods 'IANA,[Oppermann]
652
+ application/vnd.oasis.opendocument.spreadsheet-template @ots 'IANA,[Oppermann]
653
+ application/vnd.oasis.opendocument.text @odt 'IANA,[Oppermann]
654
+ application/vnd.oasis.opendocument.text-master @odm 'IANA,[Schubert],[OASIS]
655
+ application/vnd.oasis.opendocument.text-template @ott 'IANA,[Schubert],[OASIS]
656
+ application/vnd.oasis.opendocument.text-web @oth 'IANA,[Schubert],[OASIS]
657
+ application/vnd.obn 'IANA,[Hessling]
658
+ application/vnd.oftn.l10n+json 'IANA,[Grey]
659
+ application/vnd.oipf.contentaccessdownload+xml 'IANA,[D'Esclercs=DEsclercs]
660
+ application/vnd.oipf.contentaccessstreaming+xml 'IANA,[D'Esclercs=DEsclercs]
661
+ application/vnd.oipf.cspg-hexbinary 'IANA,[D'Esclercs=DEsclercs]
662
+ application/vnd.oipf.dae.svg+xml 'IANA,[D'Esclercs=DEsclercs]
663
+ application/vnd.oipf.dae.xhtml+xml 'IANA,[D'Esclercs=DEsclercs]
664
+ application/vnd.oipf.mippvcontrolmessage+xml 'IANA,[D'Esclercs=DEsclercs]
665
+ application/vnd.oipf.pae.gem 'IANA,[D'Esclercs=DEsclercs]
666
+ application/vnd.oipf.spdiscovery+xml 'IANA,[D'Esclercs=DEsclercs]
667
+ application/vnd.oipf.spdlist+xml 'IANA,[D'Esclercs=DEsclercs]
668
+ application/vnd.oipf.ueprofile+xml 'IANA,[D'Esclercs=DEsclercs]
669
+ application/vnd.oipf.userprofile+xml 'IANA,[D'Esclercs=DEsclercs]
670
+ application/vnd.olpc-sugar 'IANA,[Palmieri]
671
+ application/vnd.oma-scws-config 'IANA,[Mahalal]
672
+ application/vnd.oma-scws-http-request 'IANA,[Mahalal]
673
+ application/vnd.oma-scws-http-response 'IANA,[Mahalal]
674
+ application/vnd.oma.bcast.associated-procedure-parameter+xml 'IANA,[Rauschenbach],[OMNA - Open Mobile Naming Authority=OMNA-OpenMobileNamingAuthority]
675
+ application/vnd.oma.bcast.drm-trigger+xml 'IANA,[Rauschenbach],[OMNA - Open Mobile Naming Authority=OMNA-OpenMobileNamingAuthority]
676
+ application/vnd.oma.bcast.imd+xml 'IANA,[Rauschenbach],[OMNA - Open Mobile Naming Authority=OMNA-OpenMobileNamingAuthority]
677
+ application/vnd.oma.bcast.ltkm 'IANA,[Rauschenbach],[OMNA - Open Mobile Naming Authority=OMNA-OpenMobileNamingAuthority]
678
+ application/vnd.oma.bcast.notification+xml 'IANA,[Rauschenbach],[OMNA - Open Mobile Naming Authority=OMNA-OpenMobileNamingAuthority]
679
+ application/vnd.oma.bcast.provisioningtrigger 'IANA,[Rauschenbach],[OMNA - Open Mobile Naming Authority=OMNA-OpenMobileNamingAuthority]
680
+ application/vnd.oma.bcast.sgboot 'IANA,[Rauschenbach],[OMNA - Open Mobile Naming Authority=OMNA-OpenMobileNamingAuthority]
681
+ application/vnd.oma.bcast.sgdd+xml 'IANA,[Rauschenbach],[OMNA - Open Mobile Naming Authority=OMNA-OpenMobileNamingAuthority]
682
+ application/vnd.oma.bcast.sgdu 'IANA,[Rauschenbach],[OMNA - Open Mobile Naming Authority=OMNA-OpenMobileNamingAuthority]
683
+ application/vnd.oma.bcast.simple-symbol-container 'IANA,[Rauschenbach],[OMNA - Open Mobile Naming Authority=OMNA-OpenMobileNamingAuthority]
684
+ application/vnd.oma.bcast.smartcard-trigger+xml 'IANA,[Rauschenbach],[OMNA - Open Mobile Naming Authority=OMNA-OpenMobileNamingAuthority]
685
+ application/vnd.oma.bcast.sprov+xml 'IANA,[Rauschenbach],[OMNA - Open Mobile Naming Authority=OMNA-OpenMobileNamingAuthority]
686
+ application/vnd.oma.bcast.stkm 'IANA,[Rauschenbach],[OMNA - Open Mobile Naming Authority=OMNA-OpenMobileNamingAuthority]
687
+ application/vnd.oma.cab-address-book+xml 'IANA,[Wang],[OMA]
688
+ application/vnd.oma.cab-pcc+xml 'IANA,[Wang],[OMA]
689
+ application/vnd.oma.cab-subs-invite+xml 'IANA,[Wang],[OMA]
690
+ application/vnd.oma.cab-user-prefs+xml 'IANA,[Wang],[OMA]
691
+ application/vnd.oma.dcd 'IANA,[Primo],[OMNA - Open Mobile Naming Authority=OMNA-OpenMobileNamingAuthority]
692
+ application/vnd.oma.dcdc 'IANA,[Primo],[OMNA - Open Mobile Naming Authority=OMNA-OpenMobileNamingAuthority]
693
+ application/vnd.oma.dd2+xml 'IANA,[Sato],[Open Mobile Alliance's BAC DLDRM Working Group]
694
+ application/vnd.oma.drm.risd+xml 'IANA,[Rauschenbach],[OMNA - Open Mobile Naming Authority=OMNA-OpenMobileNamingAuthority]
695
+ application/vnd.oma.group-usage-list+xml 'IANA,[Kelley],[OMA Presence and Availability (PAG) Working Group]
696
+ application/vnd.oma.pal+xml 'IANA,[McColgan],[OMNA - Open Mobile Naming Authority=OMNA-OpenMobileNamingAuthority]
697
+ application/vnd.oma.poc.detailed-progress-report+xml 'IANA,[OMA Push to Talk over Cellular (POC) Working Group]
698
+ application/vnd.oma.poc.final-report+xml 'IANA,[OMA Push to Talk over Cellular (POC) Working Group]
699
+ application/vnd.oma.poc.groups+xml 'IANA,[Kelley],[OMA Push to Talk over Cellular (POC) Working Group]
700
+ application/vnd.oma.poc.invocation-descriptor+xml 'IANA,[OMA Push to Talk over Cellular (POC) Working Group]
701
+ application/vnd.oma.poc.optimized-progress-report+xml 'IANA,[OMA Push to Talk over Cellular (POC) Working Group]
702
+ application/vnd.oma.push 'IANA,[Sullivan],[OMA]
703
+ application/vnd.oma.scidm.messages+xml 'IANA,[Zeng],[OMNA - Open Mobile Naming Authority=OMNA-OpenMobileNamingAuthority]
704
+ application/vnd.oma.xcap-directory+xml 'IANA,[Kelley],[OMA Presence and Availability (PAG) Working Group]
705
+ application/vnd.omads-email+xml 'IANA,[OMA Data Synchronization Working Group]
706
+ application/vnd.omads-file+xml 'IANA,[OMA Data Synchronization Working Group]
707
+ application/vnd.omads-folder+xml 'IANA,[OMA Data Synchronization Working Group]
708
+ application/vnd.omaloc-supl-init 'IANA,[Grange]
709
+ application/vnd.openofficeorg.extension 'IANA,[Lingner]
710
+ application/vnd.openxmlformats-officedocument.custom-properties+xml 'IANA,[Murata]
711
+ application/vnd.openxmlformats-officedocument.customXmlProperties+xml 'IANA,[Murata]
712
+ application/vnd.openxmlformats-officedocument.drawing+xml 'IANA,[Murata]
713
+ application/vnd.openxmlformats-officedocument.drawingml.chart+xml 'IANA,[Murata]
714
+ application/vnd.openxmlformats-officedocument.drawingml.chartshapes+xml 'IANA,[Murata]
715
+ application/vnd.openxmlformats-officedocument.drawingml.diagramColors+xml 'IANA,[Murata]
716
+ application/vnd.openxmlformats-officedocument.drawingml.diagramData+xml 'IANA,[Murata]
717
+ application/vnd.openxmlformats-officedocument.drawingml.diagramLayout+xml 'IANA,[Murata]
718
+ application/vnd.openxmlformats-officedocument.drawingml.diagramStyle+xml 'IANA,[Murata]
719
+ application/vnd.openxmlformats-officedocument.extended-properties+xml 'IANA,[Murata]
720
+ application/vnd.openxmlformats-officedocument.presentationml.commentAuthors+xml 'IANA,[Murata]
721
+ application/vnd.openxmlformats-officedocument.presentationml.comments+xml 'IANA,[Murata]
722
+ application/vnd.openxmlformats-officedocument.presentationml.handoutMaster+xml 'IANA,[Murata]
723
+ application/vnd.openxmlformats-officedocument.presentationml.notesMaster+xml 'IANA,[Murata]
724
+ application/vnd.openxmlformats-officedocument.presentationml.notesSlide+xml 'IANA,[Murata]
725
+ application/vnd.openxmlformats-officedocument.presentationml.presentation @pptx 'IANA,[Murata]
726
+ application/vnd.openxmlformats-officedocument.presentationml.presentation.main+xml 'IANA,[Murata]
727
+ application/vnd.openxmlformats-officedocument.presentationml.presProps+xml 'IANA,[Murata]
728
+ application/vnd.openxmlformats-officedocument.presentationml.slide 'IANA,[Murata]
729
+ application/vnd.openxmlformats-officedocument.presentationml.slide+xml 'IANA,[Murata]
730
+ application/vnd.openxmlformats-officedocument.presentationml.slideLayout+xml 'IANA,[Murata]
731
+ application/vnd.openxmlformats-officedocument.presentationml.slideMaster+xml 'IANA,[Murata]
732
+ application/vnd.openxmlformats-officedocument.presentationml.slideshow @ppsx 'IANA,[Murata]
733
+ application/vnd.openxmlformats-officedocument.presentationml.slideshow.main+xml 'IANA,[Murata]
734
+ application/vnd.openxmlformats-officedocument.presentationml.slideUpdateInfo+xml 'IANA,[Murata]
735
+ application/vnd.openxmlformats-officedocument.presentationml.tableStyles+xml 'IANA,[Murata]
736
+ application/vnd.openxmlformats-officedocument.presentationml.tags+xml 'IANA,[Murata]
737
+ application/vnd.openxmlformats-officedocument.presentationml.template @potx 'IANA,[Murata]
738
+ application/vnd.openxmlformats-officedocument.presentationml.template.main+xml 'IANA,[Murata]
739
+ application/vnd.openxmlformats-officedocument.presentationml.viewProps+xml 'IANA,[Murata]
740
+ application/vnd.openxmlformats-officedocument.spreadsheetml.calcChain+xml 'IANA,[Murata]
741
+ application/vnd.openxmlformats-officedocument.spreadsheetml.chartsheet+xml 'IANA,[Murata]
742
+ application/vnd.openxmlformats-officedocument.spreadsheetml.comments+xml 'IANA,[Murata]
743
+ application/vnd.openxmlformats-officedocument.spreadsheetml.connections+xml 'IANA,[Murata]
744
+ application/vnd.openxmlformats-officedocument.spreadsheetml.dialogsheet+xml 'IANA,[Murata]
745
+ application/vnd.openxmlformats-officedocument.spreadsheetml.externalLink+xml 'IANA,[Murata]
746
+ application/vnd.openxmlformats-officedocument.spreadsheetml.pivotCacheDefinition+xml 'IANA,[Murata]
747
+ application/vnd.openxmlformats-officedocument.spreadsheetml.pivotCacheRecords+xml 'IANA,[Murata]
748
+ application/vnd.openxmlformats-officedocument.spreadsheetml.pivotTable+xml 'IANA,[Murata]
749
+ application/vnd.openxmlformats-officedocument.spreadsheetml.queryTable+xml 'IANA,[Murata]
750
+ application/vnd.openxmlformats-officedocument.spreadsheetml.revisionHeaders+xml 'IANA,[Murata]
751
+ application/vnd.openxmlformats-officedocument.spreadsheetml.revisionLog+xml 'IANA,[Murata]
752
+ application/vnd.openxmlformats-officedocument.spreadsheetml.sharedStrings+xml 'IANA,[Murata]
753
+ application/vnd.openxmlformats-officedocument.spreadsheetml.sheet @xlsx 'IANA,[Murata]
754
+ application/vnd.openxmlformats-officedocument.spreadsheetml.sheet.main+xml 'IANA,[Murata]
755
+ application/vnd.openxmlformats-officedocument.spreadsheetml.sheetMetadata+xml 'IANA,[Murata]
756
+ application/vnd.openxmlformats-officedocument.spreadsheetml.styles+xml 'IANA,[Murata]
757
+ application/vnd.openxmlformats-officedocument.spreadsheetml.table+xml 'IANA,[Murata]
758
+ application/vnd.openxmlformats-officedocument.spreadsheetml.tableSingleCells+xml 'IANA,[Murata]
759
+ application/vnd.openxmlformats-officedocument.spreadsheetml.template 'IANA,[Murata]
760
+ application/vnd.openxmlformats-officedocument.spreadsheetml.template.main+xml 'IANA,[Murata]
761
+ application/vnd.openxmlformats-officedocument.spreadsheetml.userNames+xml 'IANA,[Murata]
762
+ application/vnd.openxmlformats-officedocument.spreadsheetml.volatileDependencies+xml 'IANA,[Murata]
763
+ application/vnd.openxmlformats-officedocument.spreadsheetml.worksheet+xml 'IANA,[Murata]
764
+ application/vnd.openxmlformats-officedocument.theme+xml 'IANA,[Murata]
765
+ application/vnd.openxmlformats-officedocument.themeOverride+xml 'IANA,[Murata]
766
+ application/vnd.openxmlformats-officedocument.vmlDrawing 'IANA,[Murata]
767
+ application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml 'IANA,[Murata]
768
+ application/vnd.openxmlformats-officedocument.wordprocessingml.document @docx 'IANA,[Murata]
769
+ application/vnd.openxmlformats-officedocument.wordprocessingml.document.glossary+xml 'IANA,[Murata]
770
+ application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml 'IANA,[Murata]
771
+ application/vnd.openxmlformats-officedocument.wordprocessingml.endnotes+xml 'IANA,[Murata]
772
+ application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml 'IANA,[Murata]
773
+ application/vnd.openxmlformats-officedocument.wordprocessingml.footer+xml 'IANA,[Murata]
774
+ application/vnd.openxmlformats-officedocument.wordprocessingml.footnotes+xml 'IANA,[Murata]
775
+ application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml 'IANA,[Murata]
776
+ application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml 'IANA,[Murata]
777
+ application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml 'IANA,[Murata]
778
+ application/vnd.openxmlformats-officedocument.wordprocessingml.template @dotx 'IANA,[Murata]
779
+ application/vnd.openxmlformats-officedocument.wordprocessingml.template.main+xml 'IANA,[Murata]
780
+ application/vnd.openxmlformats-officedocument.wordprocessingml.webSettings+xml 'IANA,[Murata]
781
+ application/vnd.openxmlformats-package.core-properties+xml 'IANA,[Murata]
782
+ application/vnd.openxmlformats-package.digital-signature-xmlsignature+xml 'IANA,[Murata]
783
+ application/vnd.openxmlformats-package.relationships+xml 'IANA,[Murata]
784
+ application/vnd.orange.indata 'IANA,[CHATRAS_Bruno]
785
+ application/vnd.osa.netdeploy 'IANA,[Klos]
786
+ application/vnd.osgeo.mapguide.package 'IANA,[Birch]
787
+ application/vnd.osgi.bundle 'IANA,[Kriens]
788
+ application/vnd.osgi.dp 'IANA,[Kriens]
789
+ application/vnd.osgi.subsystem 'IANA,[Kriens]
790
+ application/vnd.otps.ct-kip+xml 'IANA,[Nyström=Nystrom]
791
+ application/vnd.palm @prc,pdb,pqa,oprc :base64 'IANA,[Peacock]
792
+ application/vnd.paos.xml 'IANA,[Kemp]
793
+ application/vnd.pawaafile 'IANA,[Baskaran]
794
+ application/vnd.pg.format 'IANA,[Gandert]
795
+ application/vnd.pg.osasli 'IANA,[Gandert]
796
+ application/vnd.piaccess.application-licence 'IANA,[Maneos]
797
+ application/vnd.picsel @efif 'IANA,[Naccarato]
798
+ application/vnd.pmi.widget 'IANA,[Lewis]
799
+ application/vnd.poc.group-advertisement+xml 'IANA,[Kelley],[OMA Push to Talk over Cellular (POC) Working Group]
800
+ application/vnd.pocketlearn 'IANA,[Pando]
801
+ application/vnd.powerbuilder6 'IANA,[Guy]
802
+ application/vnd.powerbuilder6-s 'IANA,[Guy]
803
+ application/vnd.powerbuilder7 'IANA,[Shilts]
804
+ application/vnd.powerbuilder7-s 'IANA,[Shilts]
805
+ application/vnd.powerbuilder75 'IANA,[Shilts]
806
+ application/vnd.powerbuilder75-s 'IANA,[Shilts]
807
+ application/vnd.preminet 'IANA,[Tenhunen]
808
+ application/vnd.previewsystems.box 'IANA,[Smolgovsky]
809
+ application/vnd.proteus.magazine 'IANA,[Hoch]
810
+ application/vnd.publishare-delta-tree 'IANA,[Ben-Kiki]
811
+ application/vnd.pvi.ptid1 @pti,ptid 'IANA,[Lamb]
812
+ application/vnd.pwg-multiplexed 'IANA,RFC3391
813
+ application/vnd.pwg-xhtml-print+xml 'IANA,[Wright]
814
+ application/vnd.qualcomm.brew-app-res 'IANA,[Forrester]
815
+ application/vnd.Quark.QuarkXPress @qxd,qxt,qwd,qwt,qxl,qxb :8bit 'IANA,[Scheidler]
816
+ application/vnd.quobject-quoxdocument 'IANA,[Ludwig]
817
+ application/vnd.radisys.moml+xml 'IANA,RFC5707
818
+ application/vnd.radisys.msml+xml 'IANA,RFC5707
819
+ application/vnd.radisys.msml-audit+xml 'IANA,RFC5707
820
+ application/vnd.radisys.msml-audit-conf+xml 'IANA,RFC5707
821
+ application/vnd.radisys.msml-audit-conn+xml 'IANA,RFC5707
822
+ application/vnd.radisys.msml-audit-dialog+xml 'IANA,RFC5707
823
+ application/vnd.radisys.msml-audit-stream+xml 'IANA,RFC5707
824
+ application/vnd.radisys.msml-conf+xml 'IANA,RFC5707
825
+ application/vnd.radisys.msml-dialog+xml 'IANA,RFC5707
826
+ application/vnd.radisys.msml-dialog-base+xml 'IANA,RFC5707
827
+ application/vnd.radisys.msml-dialog-fax-detect+xml 'IANA,RFC5707
828
+ application/vnd.radisys.msml-dialog-fax-sendrecv+xml 'IANA,RFC5707
829
+ application/vnd.radisys.msml-dialog-group+xml 'IANA,RFC5707
830
+ application/vnd.radisys.msml-dialog-speech+xml 'IANA,RFC5707
831
+ application/vnd.radisys.msml-dialog-transform+xml 'IANA,RFC5707
832
+ application/vnd.rainstor.data 'IANA,[Crook]
833
+ application/vnd.rapid 'IANA,[Szekely]
834
+ application/vnd.realvnc.bed 'IANA,[Reeves]
835
+ application/vnd.recordare.musicxml 'IANA,[Good]
836
+ application/vnd.recordare.musicxml+xml 'IANA,[Good]
837
+ application/vnd.RenLearn.rlprint 'IANA,[Wick]
838
+ application/vnd.rig.cryptonote 'IANA,[Jibiki]
839
+ application/vnd.route66.link66+xml 'IANA,[Kikstra]
840
+ application/vnd.rs-274x 'IANA,[Harding]
841
+ application/vnd.ruckus.download 'IANA,[Harris]
842
+ application/vnd.s3sms 'IANA,[Tarkkala]
843
+ application/vnd.sailingtracker.track 'IANA,[Vesalainen]
844
+ application/vnd.sbm.cid 'IANA,[Kusakari]
845
+ application/vnd.sbm.mid2 'IANA,[Murai]
846
+ application/vnd.scribus 'IANA,[Bradney]
847
+ application/vnd.sealed.3df 'IANA,[Kwan]
848
+ application/vnd.sealed.csf 'IANA,[Kwan]
849
+ application/vnd.sealed.doc @sdoc,sdo,s1w 'IANA,[Petersen]
850
+ application/vnd.sealed.eml @seml,sem 'IANA,[Petersen]
851
+ application/vnd.sealed.mht @smht,smh 'IANA,[Petersen]
852
+ application/vnd.sealed.net 'IANA,[Lambert]
853
+ application/vnd.sealed.ppt @sppt,spp,s1p 'IANA,[Petersen]
854
+ application/vnd.sealed.tiff 'IANA,[Kwan],[Lambert]
855
+ application/vnd.sealed.xls @sxls,sxl,s1e 'IANA,[Petersen]
856
+ application/vnd.sealedmedia.softseal.html @stml,stm,s1h 'IANA,[Petersen]
857
+ application/vnd.sealedmedia.softseal.pdf @spdf,spd,s1a 'IANA,[Petersen]
858
+ application/vnd.seemail @see 'IANA,[Webb]
859
+ application/vnd.sema 'IANA,[Hansson]
860
+ application/vnd.semd 'IANA,[Hansson]
861
+ application/vnd.semf 'IANA,[Hansson]
862
+ application/vnd.shana.informed.formdata 'IANA,[Selzler]
863
+ application/vnd.shana.informed.formtemplate 'IANA,[Selzler]
864
+ application/vnd.shana.informed.interchange 'IANA,[Selzler]
865
+ application/vnd.shana.informed.package 'IANA,[Selzler]
866
+ application/vnd.SimTech-MindMapper 'IANA,[Koh]
867
+ application/vnd.siren+json 'IANA,[Swiber]
868
+ application/vnd.smaf @mmf 'IANA,[Takahashi]
869
+ application/vnd.smart.notebook 'IANA,[Neitz]
870
+ application/vnd.smart.teacher 'IANA,[Boyle]
871
+ application/vnd.software602.filler.form+xml 'IANA,[Hytka],[Vondrous]
872
+ application/vnd.software602.filler.form-xml-zip 'IANA,[Hytka],[Vondrous]
873
+ application/vnd.solent.sdkm+xml 'IANA,[Gauntlett]
874
+ application/vnd.spotfire.dxp 'IANA,[Jernberg]
875
+ application/vnd.spotfire.sfs 'IANA,[Jernberg]
876
+ application/vnd.sss-cod 'IANA,[Dani]
877
+ application/vnd.sss-dtf 'IANA,[Bruno]
878
+ application/vnd.sss-ntf 'IANA,[Bruno]
879
+ application/vnd.stepmania.package 'IANA,[Andersson]
880
+ application/vnd.stepmania.stepchart 'IANA,[Andersson]
881
+ application/vnd.street-stream 'IANA,[Levitt]
882
+ application/vnd.sun.wadl+xml 'IANA,[Hadley]
883
+ application/vnd.sus-calendar @sus,susp 'IANA,[Niedfeldt]
884
+ application/vnd.svd 'IANA,[Becker]
885
+ application/vnd.swiftview-ics 'IANA,[Widener]
886
+ application/vnd.syncml+xml 'IANA,[OMA Data Synchronization Working Group]
887
+ application/vnd.syncml.dm+wbxml 'IANA,[OMA-DM Work Group]
888
+ application/vnd.syncml.dm+xml 'IANA,[Rao],[OMA-DM Work Group]
889
+ application/vnd.syncml.dm.notification 'IANA,[Thompson],[OMA-DM Work Group]
890
+ application/vnd.syncml.dmddf+wbxml 'IANA,[OMA-DM Work Group]
891
+ application/vnd.syncml.dmddf+xml 'IANA,[OMA-DM Work Group]
892
+ application/vnd.syncml.dmtnds+wbxml 'IANA,[OMA-DM Work Group]
893
+ application/vnd.syncml.dmtnds+xml 'IANA,[OMA-DM Work Group]
894
+ application/vnd.syncml.ds.notification 'IANA,[OMA Data Synchronization Working Group]
895
+ application/vnd.tao.intent-module-archive 'IANA,[Shelton]
896
+ application/vnd.tmobile-livetv 'IANA,[Helin]
897
+ application/vnd.trid.tpt 'IANA,[Cusack]
898
+ application/vnd.triscape.mxs 'IANA,[Simonoff]
899
+ application/vnd.trueapp 'IANA,[Hepler]
900
+ application/vnd.truedoc 'IANA,[Chase]
901
+ application/vnd.ubisoft.webplayer 'IANA,[Talbot]
902
+ application/vnd.ufdl 'IANA,[Manning]
903
+ application/vnd.uiq.theme 'IANA,[Ocock]
904
+ application/vnd.umajin 'IANA,[Riden]
905
+ application/vnd.unity 'IANA,[Unity3d]
906
+ application/vnd.uoml+xml 'IANA,[Gerdes]
907
+ application/vnd.uplanet.alert 'IANA,[Martin]
908
+ application/vnd.uplanet.alert-wbxml 'IANA,[Martin]
909
+ application/vnd.uplanet.bearer-choice 'IANA,[Martin]
910
+ application/vnd.uplanet.bearer-choice-wbxml 'IANA,[Martin]
911
+ application/vnd.uplanet.cacheop 'IANA,[Martin]
912
+ application/vnd.uplanet.cacheop-wbxml 'IANA,[Martin]
913
+ application/vnd.uplanet.channel 'IANA,[Martin]
914
+ application/vnd.uplanet.channel-wbxml 'IANA,[Martin]
915
+ application/vnd.uplanet.list 'IANA,[Martin]
916
+ application/vnd.uplanet.list-wbxml 'IANA,[Martin]
917
+ application/vnd.uplanet.listcmd 'IANA,[Martin]
918
+ application/vnd.uplanet.listcmd-wbxml 'IANA,[Martin]
919
+ application/vnd.uplanet.signal 'IANA,[Martin]
920
+ application/vnd.vcx 'IANA,[T.Sugimoto]
921
+ application/vnd.vd-study 'IANA,[Rogge]
922
+ application/vnd.vectorworks 'IANA,[Ferguson],[Sarkar]
923
+ application/vnd.verimatrix.vcas 'IANA,[Peterka]
924
+ application/vnd.vidsoft.vidconference @vsc :8bit 'IANA,[Hess]
925
+ application/vnd.visio @vsd,vst,vsw,vss 'IANA,[Sandal]
926
+ application/vnd.visionary @vis 'IANA,[Aravindakumar]
927
+ application/vnd.vividence.scriptfile 'IANA,[Risher]
928
+ application/vnd.vsf 'IANA,[Rowe]
929
+ application/vnd.wap.sic @sic 'IANA,[WAP-Forum]
930
+ application/vnd.wap.slc @slc 'IANA,[WAP-Forum]
931
+ application/vnd.wap.wbxml @wbxml 'IANA,[Stark]
932
+ application/vnd.wap.wmlc @wmlc 'IANA,[Stark]
933
+ application/vnd.wap.wmlscriptc @wmlsc 'IANA,[Stark]
934
+ application/vnd.webturbo @wtb 'IANA,[Rehem]
935
+ application/vnd.wfa.wsc 'IANA,[Wi-Fi Alliance]
936
+ application/vnd.wmc 'IANA,[Kjørnes=Kjornes]
937
+ application/vnd.wmf.bootstrap 'IANA,[Nguyenphu],[Iyer]
938
+ application/vnd.wolfram.mathematica 'IANA,[Wolfram]
939
+ application/vnd.wolfram.mathematica.package 'IANA,[Wolfram]
940
+ application/vnd.wolfram.player 'IANA,[Wolfram]
941
+ application/vnd.wordperfect @wpd 'IANA,[Scarborough]
942
+ application/vnd.wqd @wqd 'IANA,[Bostrom]
943
+ application/vnd.wrq-hp3000-labelled 'IANA,[Bartram]
944
+ application/vnd.wt.stf 'IANA,[Wohler]
945
+ application/vnd.wv.csp+wbxml @wv 'IANA,[Salmi]
946
+ application/vnd.wv.csp+xml :8bit 'IANA,[Ingimundarson]
947
+ application/vnd.wv.ssp+xml :8bit 'IANA,[Ingimundarson]
948
+ application/vnd.xacml+json 'IANA,[Brossard]
949
+ application/vnd.xara 'IANA,[Matthewman]
950
+ application/vnd.xfdl 'IANA,[Manning]
951
+ application/vnd.xfdl.webform 'IANA,[Mansell]
952
+ application/vnd.xmi+xml 'IANA,[Waskiewicz]
953
+ application/vnd.xmpie.cpkg 'IANA,[Sherwin]
954
+ application/vnd.xmpie.dpkg 'IANA,[Sherwin]
955
+ application/vnd.xmpie.plan 'IANA,[Sherwin]
956
+ application/vnd.xmpie.ppkg 'IANA,[Sherwin]
957
+ application/vnd.xmpie.xlim 'IANA,[Sherwin]
958
+ application/vnd.yamaha.hv-dic @hvd 'IANA,[Yamamoto]
959
+ application/vnd.yamaha.hv-script @hvs 'IANA,[Yamamoto]
960
+ application/vnd.yamaha.hv-voice @hvp 'IANA,[Yamamoto]
961
+ application/vnd.yamaha.openscoreformat 'IANA,[Olleson]
962
+ application/vnd.yamaha.openscoreformat.osfpvg+xml 'IANA,[Olleson]
963
+ application/vnd.yamaha.remote-setup 'IANA,[Sukizaki]
964
+ application/vnd.yamaha.smaf-audio @saf 'IANA,[Shinoda]
965
+ application/vnd.yamaha.smaf-phrase @spf 'IANA,[Shinoda]
966
+ application/vnd.yamaha.through-ngn 'IANA,[Sukizaki]
967
+ application/vnd.yamaha.tunnel-udpencap 'IANA,[Sukizaki]
968
+ application/vnd.yellowriver-custom-menu 'IANA,[Yellow]
969
+ application/vnd.zul 'IANA,[Grothmann]
970
+ application/vnd.zzazz.deck+xml 'IANA,[Hewett]
971
+ application/voicexml+xml 'IANA,RFC4267
972
+ application/vq-rtcpxr 'IANA,RFC6035
973
+ application/watcherinfo+xml @wif 'IANA,RFC3858
974
+ application/whoispp-query 'IANA,RFC2957
975
+ application/whoispp-response 'IANA,RFC2958
976
+ application/widget 'IANA,[W3C],[Pemberton]
977
+ application/wita 'IANA,[Campbell]
978
+ application/wordperfect5.1 @wp5,wp 'IANA,[Lindner]
979
+ application/wsdl+xml 'IANA,[W3C]
980
+ application/wspolicy+xml 'IANA,[W3C]
981
+ application/x400-bp 'IANA,RFC1494
982
+ application/xcap-att+xml 'IANA,RFC4825
983
+ application/xcap-caps+xml 'IANA,RFC4825
984
+ application/xcap-diff+xml 'IANA,RFC5874
985
+ application/xcap-el+xml 'IANA,RFC4825
986
+ application/xcap-error+xml 'IANA,RFC4825
987
+ application/xcap-ns+xml 'IANA,RFC4825
988
+ application/xcon-conference-info+xml 'IANA,{RFC-ietf-xcon-event-package-01.txt=http://tools.ietf.org/html/draft-ietf-xcon-event-package}
989
+ application/xcon-conference-info-diff+xml 'IANA,{RFC-ietf-xcon-event-package-01.txt=http://tools.ietf.org/html/draft-ietf-xcon-event-package}
990
+ application/xenc+xml 'IANA,[Reagle],[XENC Working Group]
991
+ application/xhtml+xml @xhtml :8bit 'IANA,RFC3236
992
+ application/xml @xml,xsl :8bit 'IANA,RFC3023
993
+ application/xml-dtd @dtd :8bit 'IANA,RFC3023
994
+ application/xml-external-parsed-entity 'IANA,RFC3023
995
+ application/xmpp+xml 'IANA,RFC3923
996
+ application/xop+xml 'IANA,[Nottingham]
997
+ application/xslt+xml @xslt 'IANA,[W3C]
998
+ application/xv+xml 'IANA,RFC4374
999
+ application/yang 'IANA,RFC6020
1000
+ application/yin+xml 'IANA,RFC6020
1001
+ application/zip @zip :base64 'IANA,[Lindner]
1002
+ application/zlib 'IANA,RFC6713