climine 0.0.6 → 0.0.7

Sign up to get free protection for your applications and to get access to all the features.
Files changed (830) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile.lock +1 -1
  3. data/lib/climine/command/issue.rb +10 -1
  4. data/lib/climine/redmine.rb +9 -1
  5. data/lib/climine/template/issue.erb +9 -1
  6. data/lib/climine/version.rb +1 -1
  7. data/vendor/bundle/ruby/2.1.0/bin/climine +23 -0
  8. data/vendor/bundle/ruby/2.1.0/bin/redcarpet +23 -0
  9. data/vendor/bundle/ruby/2.1.0/bin/thor +23 -0
  10. data/vendor/bundle/ruby/2.1.0/bin/yard +23 -0
  11. data/vendor/bundle/ruby/2.1.0/bin/yardoc +23 -0
  12. data/vendor/bundle/ruby/2.1.0/bin/yri +23 -0
  13. data/vendor/bundle/ruby/2.1.0/build_info/hashie-2.0.5.info +1 -0
  14. data/vendor/bundle/ruby/2.1.0/build_info/hirb-0.7.1.info +1 -0
  15. data/vendor/bundle/ruby/2.1.0/build_info/hirb-unicode-0.0.5.info +1 -0
  16. data/vendor/bundle/ruby/2.1.0/build_info/redcarpet-3.0.0.info +1 -0
  17. data/vendor/bundle/ruby/2.1.0/build_info/thor-0.18.1.info +1 -0
  18. data/vendor/bundle/ruby/2.1.0/build_info/unicode-display_width-0.1.1.info +1 -0
  19. data/vendor/bundle/ruby/2.1.0/build_info/yard-0.8.7.3.info +1 -0
  20. data/vendor/bundle/ruby/2.1.0/cache/hashie-2.0.5.gem +0 -0
  21. data/vendor/bundle/ruby/2.1.0/cache/hirb-0.7.1.gem +0 -0
  22. data/vendor/bundle/ruby/2.1.0/cache/hirb-unicode-0.0.5.gem +0 -0
  23. data/vendor/bundle/ruby/2.1.0/cache/redcarpet-3.0.0.gem +0 -0
  24. data/vendor/bundle/ruby/2.1.0/cache/thor-0.18.1.gem +0 -0
  25. data/vendor/bundle/ruby/2.1.0/cache/unicode-display_width-0.1.1.gem +0 -0
  26. data/vendor/bundle/ruby/2.1.0/cache/yard-0.8.7.3.gem +0 -0
  27. data/vendor/bundle/ruby/2.1.0/extensions/x86_64-darwin-13/2.1.0/redcarpet-3.0.0/gem.build_complete +0 -0
  28. data/vendor/bundle/ruby/2.1.0/extensions/x86_64-darwin-13/2.1.0/redcarpet-3.0.0/gem_make.out +58 -0
  29. data/vendor/bundle/ruby/2.1.0/extensions/x86_64-darwin-13/2.1.0/redcarpet-3.0.0/redcarpet.bundle +0 -0
  30. data/vendor/bundle/ruby/2.1.0/gems/hashie-2.0.5/CHANGELOG.md +39 -0
  31. data/vendor/bundle/ruby/2.1.0/gems/hashie-2.0.5/CONTRIBUTING.md +27 -0
  32. data/vendor/bundle/ruby/2.1.0/gems/hashie-2.0.5/Gemfile +2 -0
  33. data/vendor/bundle/ruby/2.1.0/gems/hashie-2.0.5/Guardfile +5 -0
  34. data/vendor/bundle/ruby/2.1.0/gems/hashie-2.0.5/LICENSE +20 -0
  35. data/vendor/bundle/ruby/2.1.0/gems/hashie-2.0.5/README.markdown +236 -0
  36. data/vendor/bundle/ruby/2.1.0/gems/hashie-2.0.5/Rakefile +13 -0
  37. data/vendor/bundle/ruby/2.1.0/gems/hashie-2.0.5/hashie.gemspec +23 -0
  38. data/vendor/bundle/ruby/2.1.0/gems/hashie-2.0.5/lib/hashie.rb +23 -0
  39. data/vendor/bundle/ruby/2.1.0/gems/hashie-2.0.5/lib/hashie/clash.rb +86 -0
  40. data/vendor/bundle/ruby/2.1.0/gems/hashie-2.0.5/lib/hashie/dash.rb +170 -0
  41. data/vendor/bundle/ruby/2.1.0/gems/hashie-2.0.5/lib/hashie/extensions/coercion.rb +115 -0
  42. data/vendor/bundle/ruby/2.1.0/gems/hashie-2.0.5/lib/hashie/extensions/deep_merge.rb +21 -0
  43. data/vendor/bundle/ruby/2.1.0/gems/hashie-2.0.5/lib/hashie/extensions/indifferent_access.rb +120 -0
  44. data/vendor/bundle/ruby/2.1.0/gems/hashie-2.0.5/lib/hashie/extensions/key_conversion.rb +92 -0
  45. data/vendor/bundle/ruby/2.1.0/gems/hashie-2.0.5/lib/hashie/extensions/merge_initializer.rb +26 -0
  46. data/vendor/bundle/ruby/2.1.0/gems/hashie-2.0.5/lib/hashie/extensions/method_access.rb +124 -0
  47. data/vendor/bundle/ruby/2.1.0/gems/hashie-2.0.5/lib/hashie/extensions/structure.rb +47 -0
  48. data/vendor/bundle/ruby/2.1.0/gems/hashie-2.0.5/lib/hashie/hash.rb +33 -0
  49. data/vendor/bundle/ruby/2.1.0/gems/hashie-2.0.5/lib/hashie/hash_extensions.rb +49 -0
  50. data/vendor/bundle/ruby/2.1.0/gems/hashie-2.0.5/lib/hashie/mash.rb +233 -0
  51. data/vendor/bundle/ruby/2.1.0/gems/hashie-2.0.5/lib/hashie/trash.rb +91 -0
  52. data/vendor/bundle/ruby/2.1.0/gems/hashie-2.0.5/lib/hashie/version.rb +3 -0
  53. data/vendor/bundle/ruby/2.1.0/gems/hashie-2.0.5/spec/hashie/clash_spec.rb +50 -0
  54. data/vendor/bundle/ruby/2.1.0/gems/hashie-2.0.5/spec/hashie/dash_spec.rb +267 -0
  55. data/vendor/bundle/ruby/2.1.0/gems/hashie-2.0.5/spec/hashie/extensions/coercion_spec.rb +151 -0
  56. data/vendor/bundle/ruby/2.1.0/gems/hashie-2.0.5/spec/hashie/extensions/deep_merge_spec.rb +20 -0
  57. data/vendor/bundle/ruby/2.1.0/gems/hashie-2.0.5/spec/hashie/extensions/indifferent_access_spec.rb +99 -0
  58. data/vendor/bundle/ruby/2.1.0/gems/hashie-2.0.5/spec/hashie/extensions/key_conversion_spec.rb +102 -0
  59. data/vendor/bundle/ruby/2.1.0/gems/hashie-2.0.5/spec/hashie/extensions/merge_initializer_spec.rb +20 -0
  60. data/vendor/bundle/ruby/2.1.0/gems/hashie-2.0.5/spec/hashie/extensions/method_access_spec.rb +112 -0
  61. data/vendor/bundle/ruby/2.1.0/gems/hashie-2.0.5/spec/hashie/hash_spec.rb +22 -0
  62. data/vendor/bundle/ruby/2.1.0/gems/hashie-2.0.5/spec/hashie/mash_spec.rb +412 -0
  63. data/vendor/bundle/ruby/2.1.0/gems/hashie-2.0.5/spec/hashie/trash_spec.rb +155 -0
  64. data/vendor/bundle/ruby/2.1.0/gems/hashie-2.0.5/spec/spec.opts +3 -0
  65. data/vendor/bundle/ruby/2.1.0/gems/hashie-2.0.5/spec/spec_helper.rb +12 -0
  66. data/vendor/bundle/ruby/2.1.0/gems/hirb-0.7.1/CHANGELOG.rdoc +158 -0
  67. data/vendor/bundle/ruby/2.1.0/gems/hirb-0.7.1/LICENSE.txt +22 -0
  68. data/vendor/bundle/ruby/2.1.0/gems/hirb-0.7.1/README.rdoc +201 -0
  69. data/vendor/bundle/ruby/2.1.0/gems/hirb-0.7.1/Rakefile +35 -0
  70. data/vendor/bundle/ruby/2.1.0/gems/hirb-0.7.1/lib/bond/completions/hirb.rb +15 -0
  71. data/vendor/bundle/ruby/2.1.0/gems/hirb-0.7.1/lib/hirb.rb +82 -0
  72. data/vendor/bundle/ruby/2.1.0/gems/hirb-0.7.1/lib/hirb/console.rb +43 -0
  73. data/vendor/bundle/ruby/2.1.0/gems/hirb-0.7.1/lib/hirb/dynamic_view.rb +113 -0
  74. data/vendor/bundle/ruby/2.1.0/gems/hirb-0.7.1/lib/hirb/formatter.rb +126 -0
  75. data/vendor/bundle/ruby/2.1.0/gems/hirb-0.7.1/lib/hirb/helpers.rb +18 -0
  76. data/vendor/bundle/ruby/2.1.0/gems/hirb-0.7.1/lib/hirb/helpers/auto_table.rb +24 -0
  77. data/vendor/bundle/ruby/2.1.0/gems/hirb-0.7.1/lib/hirb/helpers/markdown_table.rb +14 -0
  78. data/vendor/bundle/ruby/2.1.0/gems/hirb-0.7.1/lib/hirb/helpers/object_table.rb +14 -0
  79. data/vendor/bundle/ruby/2.1.0/gems/hirb-0.7.1/lib/hirb/helpers/parent_child_tree.rb +24 -0
  80. data/vendor/bundle/ruby/2.1.0/gems/hirb-0.7.1/lib/hirb/helpers/tab_table.rb +24 -0
  81. data/vendor/bundle/ruby/2.1.0/gems/hirb-0.7.1/lib/hirb/helpers/table.rb +374 -0
  82. data/vendor/bundle/ruby/2.1.0/gems/hirb-0.7.1/lib/hirb/helpers/table/filters.rb +10 -0
  83. data/vendor/bundle/ruby/2.1.0/gems/hirb-0.7.1/lib/hirb/helpers/table/resizer.rb +82 -0
  84. data/vendor/bundle/ruby/2.1.0/gems/hirb-0.7.1/lib/hirb/helpers/tree.rb +181 -0
  85. data/vendor/bundle/ruby/2.1.0/gems/hirb-0.7.1/lib/hirb/helpers/unicode_table.rb +15 -0
  86. data/vendor/bundle/ruby/2.1.0/gems/hirb-0.7.1/lib/hirb/helpers/vertical_table.rb +37 -0
  87. data/vendor/bundle/ruby/2.1.0/gems/hirb-0.7.1/lib/hirb/import_object.rb +10 -0
  88. data/vendor/bundle/ruby/2.1.0/gems/hirb-0.7.1/lib/hirb/menu.rb +226 -0
  89. data/vendor/bundle/ruby/2.1.0/gems/hirb-0.7.1/lib/hirb/pager.rb +105 -0
  90. data/vendor/bundle/ruby/2.1.0/gems/hirb-0.7.1/lib/hirb/string.rb +44 -0
  91. data/vendor/bundle/ruby/2.1.0/gems/hirb-0.7.1/lib/hirb/util.rb +96 -0
  92. data/vendor/bundle/ruby/2.1.0/gems/hirb-0.7.1/lib/hirb/version.rb +3 -0
  93. data/vendor/bundle/ruby/2.1.0/gems/hirb-0.7.1/lib/hirb/view.rb +270 -0
  94. data/vendor/bundle/ruby/2.1.0/gems/hirb-0.7.1/lib/hirb/views.rb +8 -0
  95. data/vendor/bundle/ruby/2.1.0/gems/hirb-0.7.1/lib/hirb/views/couch_db.rb +11 -0
  96. data/vendor/bundle/ruby/2.1.0/gems/hirb-0.7.1/lib/hirb/views/misc_db.rb +15 -0
  97. data/vendor/bundle/ruby/2.1.0/gems/hirb-0.7.1/lib/hirb/views/mongo_db.rb +17 -0
  98. data/vendor/bundle/ruby/2.1.0/gems/hirb-0.7.1/lib/hirb/views/orm.rb +11 -0
  99. data/vendor/bundle/ruby/2.1.0/gems/hirb-0.7.1/lib/hirb/views/rails.rb +19 -0
  100. data/vendor/bundle/ruby/2.1.0/gems/hirb-0.7.1/lib/ripl/hirb.rb +15 -0
  101. data/vendor/bundle/ruby/2.1.0/gems/hirb-0.7.1/test/auto_table_test.rb +33 -0
  102. data/vendor/bundle/ruby/2.1.0/gems/hirb-0.7.1/test/console_test.rb +27 -0
  103. data/vendor/bundle/ruby/2.1.0/gems/hirb-0.7.1/test/deps.rip +4 -0
  104. data/vendor/bundle/ruby/2.1.0/gems/hirb-0.7.1/test/dynamic_view_test.rb +94 -0
  105. data/vendor/bundle/ruby/2.1.0/gems/hirb-0.7.1/test/formatter_test.rb +176 -0
  106. data/vendor/bundle/ruby/2.1.0/gems/hirb-0.7.1/test/hirb_test.rb +39 -0
  107. data/vendor/bundle/ruby/2.1.0/gems/hirb-0.7.1/test/import_test.rb +9 -0
  108. data/vendor/bundle/ruby/2.1.0/gems/hirb-0.7.1/test/menu_test.rb +272 -0
  109. data/vendor/bundle/ruby/2.1.0/gems/hirb-0.7.1/test/object_table_test.rb +79 -0
  110. data/vendor/bundle/ruby/2.1.0/gems/hirb-0.7.1/test/pager_test.rb +162 -0
  111. data/vendor/bundle/ruby/2.1.0/gems/hirb-0.7.1/test/resizer_test.rb +62 -0
  112. data/vendor/bundle/ruby/2.1.0/gems/hirb-0.7.1/test/table_test.rb +667 -0
  113. data/vendor/bundle/ruby/2.1.0/gems/hirb-0.7.1/test/test_helper.rb +60 -0
  114. data/vendor/bundle/ruby/2.1.0/gems/hirb-0.7.1/test/tree_test.rb +184 -0
  115. data/vendor/bundle/ruby/2.1.0/gems/hirb-0.7.1/test/util_test.rb +59 -0
  116. data/vendor/bundle/ruby/2.1.0/gems/hirb-0.7.1/test/view_test.rb +178 -0
  117. data/vendor/bundle/ruby/2.1.0/gems/hirb-0.7.1/test/views_test.rb +22 -0
  118. data/vendor/bundle/ruby/2.1.0/gems/hirb-unicode-0.0.5/Gemfile +4 -0
  119. data/vendor/bundle/ruby/2.1.0/gems/hirb-unicode-0.0.5/MIT-LICENSE +19 -0
  120. data/vendor/bundle/ruby/2.1.0/gems/hirb-unicode-0.0.5/README.md +42 -0
  121. data/vendor/bundle/ruby/2.1.0/gems/hirb-unicode-0.0.5/Rakefile +25 -0
  122. data/vendor/bundle/ruby/2.1.0/gems/hirb-unicode-0.0.5/hirb-unicode.gemspec +29 -0
  123. data/vendor/bundle/ruby/2.1.0/gems/hirb-unicode-0.0.5/lib/hirb-unicode.rb +1 -0
  124. data/vendor/bundle/ruby/2.1.0/gems/hirb-unicode-0.0.5/lib/hirb/unicode.rb +4 -0
  125. data/vendor/bundle/ruby/2.1.0/gems/hirb-unicode-0.0.5/lib/hirb/unicode/string_util.rb +39 -0
  126. data/vendor/bundle/ruby/2.1.0/gems/hirb-unicode-0.0.5/lib/hirb/unicode/version.rb +5 -0
  127. data/vendor/bundle/ruby/2.1.0/gems/hirb-unicode-0.0.5/test/string_test.rb +51 -0
  128. data/vendor/bundle/ruby/2.1.0/gems/hirb-unicode-0.0.5/test/test_helper.rb +63 -0
  129. data/vendor/bundle/ruby/2.1.0/gems/redcarpet-3.0.0/COPYING +14 -0
  130. data/vendor/bundle/ruby/2.1.0/gems/redcarpet-3.0.0/Gemfile +2 -0
  131. data/vendor/bundle/ruby/2.1.0/gems/redcarpet-3.0.0/README.markdown +364 -0
  132. data/vendor/bundle/ruby/2.1.0/gems/redcarpet-3.0.0/Rakefile +57 -0
  133. data/vendor/bundle/ruby/2.1.0/gems/redcarpet-3.0.0/bin/redcarpet +38 -0
  134. data/vendor/bundle/ruby/2.1.0/gems/redcarpet-3.0.0/ext/redcarpet/Makefile +239 -0
  135. data/vendor/bundle/ruby/2.1.0/gems/redcarpet-3.0.0/ext/redcarpet/autolink.c +296 -0
  136. data/vendor/bundle/ruby/2.1.0/gems/redcarpet-3.0.0/ext/redcarpet/autolink.h +49 -0
  137. data/vendor/bundle/ruby/2.1.0/gems/redcarpet-3.0.0/ext/redcarpet/autolink.o +0 -0
  138. data/vendor/bundle/ruby/2.1.0/gems/redcarpet-3.0.0/ext/redcarpet/buffer.c +225 -0
  139. data/vendor/bundle/ruby/2.1.0/gems/redcarpet-3.0.0/ext/redcarpet/buffer.h +89 -0
  140. data/vendor/bundle/ruby/2.1.0/gems/redcarpet-3.0.0/ext/redcarpet/buffer.o +0 -0
  141. data/vendor/bundle/ruby/2.1.0/gems/redcarpet-3.0.0/ext/redcarpet/extconf.rb +6 -0
  142. data/vendor/bundle/ruby/2.1.0/gems/redcarpet-3.0.0/ext/redcarpet/houdini.h +37 -0
  143. data/vendor/bundle/ruby/2.1.0/gems/redcarpet-3.0.0/ext/redcarpet/houdini_href_e.c +108 -0
  144. data/vendor/bundle/ruby/2.1.0/gems/redcarpet-3.0.0/ext/redcarpet/houdini_href_e.o +0 -0
  145. data/vendor/bundle/ruby/2.1.0/gems/redcarpet-3.0.0/ext/redcarpet/houdini_html_e.c +88 -0
  146. data/vendor/bundle/ruby/2.1.0/gems/redcarpet-3.0.0/ext/redcarpet/houdini_html_e.o +0 -0
  147. data/vendor/bundle/ruby/2.1.0/gems/redcarpet-3.0.0/ext/redcarpet/html.c +679 -0
  148. data/vendor/bundle/ruby/2.1.0/gems/redcarpet-3.0.0/ext/redcarpet/html.h +78 -0
  149. data/vendor/bundle/ruby/2.1.0/gems/redcarpet-3.0.0/ext/redcarpet/html.o +0 -0
  150. data/vendor/bundle/ruby/2.1.0/gems/redcarpet-3.0.0/ext/redcarpet/html_blocks.h +206 -0
  151. data/vendor/bundle/ruby/2.1.0/gems/redcarpet-3.0.0/ext/redcarpet/html_smartypants.c +439 -0
  152. data/vendor/bundle/ruby/2.1.0/gems/redcarpet-3.0.0/ext/redcarpet/html_smartypants.o +0 -0
  153. data/vendor/bundle/ruby/2.1.0/gems/redcarpet-3.0.0/ext/redcarpet/markdown.c +2570 -0
  154. data/vendor/bundle/ruby/2.1.0/gems/redcarpet-3.0.0/ext/redcarpet/markdown.h +141 -0
  155. data/vendor/bundle/ruby/2.1.0/gems/redcarpet-3.0.0/ext/redcarpet/markdown.o +0 -0
  156. data/vendor/bundle/ruby/2.1.0/gems/redcarpet-3.0.0/ext/redcarpet/rc_markdown.c +159 -0
  157. data/vendor/bundle/ruby/2.1.0/gems/redcarpet-3.0.0/ext/redcarpet/rc_markdown.o +0 -0
  158. data/vendor/bundle/ruby/2.1.0/gems/redcarpet-3.0.0/ext/redcarpet/rc_render.c +485 -0
  159. data/vendor/bundle/ruby/2.1.0/gems/redcarpet-3.0.0/ext/redcarpet/rc_render.o +0 -0
  160. data/vendor/bundle/ruby/2.1.0/gems/redcarpet-3.0.0/ext/redcarpet/redcarpet.bundle +0 -0
  161. data/vendor/bundle/ruby/2.1.0/gems/redcarpet-3.0.0/ext/redcarpet/redcarpet.h +30 -0
  162. data/vendor/bundle/ruby/2.1.0/gems/redcarpet-3.0.0/ext/redcarpet/stack.c +81 -0
  163. data/vendor/bundle/ruby/2.1.0/gems/redcarpet-3.0.0/ext/redcarpet/stack.h +29 -0
  164. data/vendor/bundle/ruby/2.1.0/gems/redcarpet-3.0.0/ext/redcarpet/stack.o +0 -0
  165. data/vendor/bundle/ruby/2.1.0/gems/redcarpet-3.0.0/lib/redcarpet.bundle +0 -0
  166. data/vendor/bundle/ruby/2.1.0/gems/redcarpet-3.0.0/lib/redcarpet.rb +125 -0
  167. data/vendor/bundle/ruby/2.1.0/gems/redcarpet-3.0.0/lib/redcarpet/compat.rb +3 -0
  168. data/vendor/bundle/ruby/2.1.0/gems/redcarpet-3.0.0/lib/redcarpet/render_man.rb +65 -0
  169. data/vendor/bundle/ruby/2.1.0/gems/redcarpet-3.0.0/lib/redcarpet/render_strip.rb +41 -0
  170. data/vendor/bundle/ruby/2.1.0/gems/redcarpet-3.0.0/redcarpet.gemspec +65 -0
  171. data/vendor/bundle/ruby/2.1.0/gems/redcarpet-3.0.0/test/custom_render_test.rb +28 -0
  172. data/vendor/bundle/ruby/2.1.0/gems/redcarpet-3.0.0/test/html_render_test.rb +139 -0
  173. data/vendor/bundle/ruby/2.1.0/gems/redcarpet-3.0.0/test/markdown_test.rb +253 -0
  174. data/vendor/bundle/ruby/2.1.0/gems/redcarpet-3.0.0/test/pathological_inputs_test.rb +34 -0
  175. data/vendor/bundle/ruby/2.1.0/gems/redcarpet-3.0.0/test/redcarpet_compat_test.rb +38 -0
  176. data/vendor/bundle/ruby/2.1.0/gems/redcarpet-3.0.0/test/smarty_html_test.rb +30 -0
  177. data/vendor/bundle/ruby/2.1.0/gems/redcarpet-3.0.0/test/smarty_pants_test.rb +43 -0
  178. data/vendor/bundle/ruby/2.1.0/gems/redcarpet-3.0.0/test/stripdown_render_test.rb +31 -0
  179. data/vendor/bundle/ruby/2.1.0/gems/redcarpet-3.0.0/test/test_helper.rb +16 -0
  180. data/vendor/bundle/ruby/2.1.0/gems/thor-0.18.1/CHANGELOG.md +139 -0
  181. data/vendor/bundle/ruby/2.1.0/gems/thor-0.18.1/LICENSE.md +20 -0
  182. data/vendor/bundle/ruby/2.1.0/gems/thor-0.18.1/README.md +35 -0
  183. data/vendor/bundle/ruby/2.1.0/gems/thor-0.18.1/Thorfile +30 -0
  184. data/vendor/bundle/ruby/2.1.0/gems/thor-0.18.1/bin/thor +6 -0
  185. data/vendor/bundle/ruby/2.1.0/gems/thor-0.18.1/lib/thor.rb +473 -0
  186. data/vendor/bundle/ruby/2.1.0/gems/thor-0.18.1/lib/thor/actions.rb +318 -0
  187. data/vendor/bundle/ruby/2.1.0/gems/thor-0.18.1/lib/thor/actions/create_file.rb +105 -0
  188. data/vendor/bundle/ruby/2.1.0/gems/thor-0.18.1/lib/thor/actions/create_link.rb +60 -0
  189. data/vendor/bundle/ruby/2.1.0/gems/thor-0.18.1/lib/thor/actions/directory.rb +119 -0
  190. data/vendor/bundle/ruby/2.1.0/gems/thor-0.18.1/lib/thor/actions/empty_directory.rb +137 -0
  191. data/vendor/bundle/ruby/2.1.0/gems/thor-0.18.1/lib/thor/actions/file_manipulation.rb +314 -0
  192. data/vendor/bundle/ruby/2.1.0/gems/thor-0.18.1/lib/thor/actions/inject_into_file.rb +109 -0
  193. data/vendor/bundle/ruby/2.1.0/gems/thor-0.18.1/lib/thor/base.rb +652 -0
  194. data/vendor/bundle/ruby/2.1.0/gems/thor-0.18.1/lib/thor/command.rb +136 -0
  195. data/vendor/bundle/ruby/2.1.0/gems/thor-0.18.1/lib/thor/core_ext/hash_with_indifferent_access.rb +80 -0
  196. data/vendor/bundle/ruby/2.1.0/gems/thor-0.18.1/lib/thor/core_ext/io_binary_read.rb +12 -0
  197. data/vendor/bundle/ruby/2.1.0/gems/thor-0.18.1/lib/thor/core_ext/ordered_hash.rb +100 -0
  198. data/vendor/bundle/ruby/2.1.0/gems/thor-0.18.1/lib/thor/error.rb +28 -0
  199. data/vendor/bundle/ruby/2.1.0/gems/thor-0.18.1/lib/thor/group.rb +282 -0
  200. data/vendor/bundle/ruby/2.1.0/gems/thor-0.18.1/lib/thor/invocation.rb +172 -0
  201. data/vendor/bundle/ruby/2.1.0/gems/thor-0.18.1/lib/thor/parser.rb +4 -0
  202. data/vendor/bundle/ruby/2.1.0/gems/thor-0.18.1/lib/thor/parser/argument.rb +74 -0
  203. data/vendor/bundle/ruby/2.1.0/gems/thor-0.18.1/lib/thor/parser/arguments.rb +171 -0
  204. data/vendor/bundle/ruby/2.1.0/gems/thor-0.18.1/lib/thor/parser/option.rb +121 -0
  205. data/vendor/bundle/ruby/2.1.0/gems/thor-0.18.1/lib/thor/parser/options.rb +218 -0
  206. data/vendor/bundle/ruby/2.1.0/gems/thor-0.18.1/lib/thor/rake_compat.rb +72 -0
  207. data/vendor/bundle/ruby/2.1.0/gems/thor-0.18.1/lib/thor/runner.rb +322 -0
  208. data/vendor/bundle/ruby/2.1.0/gems/thor-0.18.1/lib/thor/shell.rb +88 -0
  209. data/vendor/bundle/ruby/2.1.0/gems/thor-0.18.1/lib/thor/shell/basic.rb +393 -0
  210. data/vendor/bundle/ruby/2.1.0/gems/thor-0.18.1/lib/thor/shell/color.rb +148 -0
  211. data/vendor/bundle/ruby/2.1.0/gems/thor-0.18.1/lib/thor/shell/html.rb +127 -0
  212. data/vendor/bundle/ruby/2.1.0/gems/thor-0.18.1/lib/thor/util.rb +270 -0
  213. data/vendor/bundle/ruby/2.1.0/gems/thor-0.18.1/lib/thor/version.rb +3 -0
  214. data/vendor/bundle/ruby/2.1.0/gems/thor-0.18.1/spec/actions/create_file_spec.rb +170 -0
  215. data/vendor/bundle/ruby/2.1.0/gems/thor-0.18.1/spec/actions/create_link_spec.rb +95 -0
  216. data/vendor/bundle/ruby/2.1.0/gems/thor-0.18.1/spec/actions/directory_spec.rb +169 -0
  217. data/vendor/bundle/ruby/2.1.0/gems/thor-0.18.1/spec/actions/empty_directory_spec.rb +129 -0
  218. data/vendor/bundle/ruby/2.1.0/gems/thor-0.18.1/spec/actions/file_manipulation_spec.rb +382 -0
  219. data/vendor/bundle/ruby/2.1.0/gems/thor-0.18.1/spec/actions/inject_into_file_spec.rb +135 -0
  220. data/vendor/bundle/ruby/2.1.0/gems/thor-0.18.1/spec/actions_spec.rb +331 -0
  221. data/vendor/bundle/ruby/2.1.0/gems/thor-0.18.1/spec/base_spec.rb +291 -0
  222. data/vendor/bundle/ruby/2.1.0/gems/thor-0.18.1/spec/command_spec.rb +80 -0
  223. data/vendor/bundle/ruby/2.1.0/gems/thor-0.18.1/spec/core_ext/hash_with_indifferent_access_spec.rb +48 -0
  224. data/vendor/bundle/ruby/2.1.0/gems/thor-0.18.1/spec/core_ext/ordered_hash_spec.rb +115 -0
  225. data/vendor/bundle/ruby/2.1.0/gems/thor-0.18.1/spec/exit_condition_spec.rb +19 -0
  226. data/vendor/bundle/ruby/2.1.0/gems/thor-0.18.1/spec/fixtures/application.rb +2 -0
  227. data/vendor/bundle/ruby/2.1.0/gems/thor-0.18.1/spec/fixtures/app{1}/README +3 -0
  228. data/vendor/bundle/ruby/2.1.0/gems/thor-0.18.1/spec/fixtures/bundle/execute.rb +6 -0
  229. data/vendor/bundle/ruby/2.1.0/gems/thor-0.18.1/spec/fixtures/bundle/main.thor +1 -0
  230. data/vendor/bundle/ruby/2.1.0/gems/thor-0.18.1/spec/fixtures/command.thor +10 -0
  231. data/vendor/bundle/ruby/2.1.0/gems/thor-0.18.1/spec/fixtures/doc/%file_name%.rb.tt +1 -0
  232. data/vendor/bundle/ruby/2.1.0/gems/thor-0.18.1/spec/fixtures/doc/COMMENTER +11 -0
  233. data/vendor/bundle/ruby/2.1.0/gems/thor-0.18.1/spec/fixtures/doc/README +3 -0
  234. data/vendor/bundle/ruby/2.1.0/gems/thor-0.18.1/spec/fixtures/doc/block_helper.rb +3 -0
  235. data/vendor/bundle/ruby/2.1.0/gems/thor-0.18.1/spec/fixtures/doc/config.rb +1 -0
  236. data/vendor/bundle/ruby/2.1.0/gems/thor-0.18.1/spec/fixtures/doc/config.yaml.tt +1 -0
  237. data/vendor/bundle/ruby/2.1.0/gems/thor-0.18.1/spec/fixtures/doc/excluding/%file_name%.rb.tt +1 -0
  238. data/vendor/bundle/ruby/2.1.0/gems/thor-0.18.1/spec/fixtures/enum.thor +10 -0
  239. data/vendor/bundle/ruby/2.1.0/gems/thor-0.18.1/spec/fixtures/group.thor +128 -0
  240. data/vendor/bundle/ruby/2.1.0/gems/thor-0.18.1/spec/fixtures/invoke.thor +112 -0
  241. data/vendor/bundle/ruby/2.1.0/gems/thor-0.18.1/spec/fixtures/path with spaces b/data/vendor/bundle/ruby/2.1.0/gems/thor-0.18.1/spec/fixtures/path with → spaces +0 -0
  242. data/vendor/bundle/ruby/2.1.0/gems/thor-0.18.1/spec/fixtures/preserve/script.sh +3 -0
  243. data/vendor/bundle/ruby/2.1.0/gems/thor-0.18.1/spec/fixtures/script.thor +220 -0
  244. data/vendor/bundle/ruby/2.1.0/gems/thor-0.18.1/spec/fixtures/subcommand.thor +17 -0
  245. data/vendor/bundle/ruby/2.1.0/gems/thor-0.18.1/spec/group_spec.rb +216 -0
  246. data/vendor/bundle/ruby/2.1.0/gems/thor-0.18.1/spec/helper.rb +67 -0
  247. data/vendor/bundle/ruby/2.1.0/gems/thor-0.18.1/spec/invocation_spec.rb +100 -0
  248. data/vendor/bundle/ruby/2.1.0/gems/thor-0.18.1/spec/parser/argument_spec.rb +53 -0
  249. data/vendor/bundle/ruby/2.1.0/gems/thor-0.18.1/spec/parser/arguments_spec.rb +66 -0
  250. data/vendor/bundle/ruby/2.1.0/gems/thor-0.18.1/spec/parser/option_spec.rb +202 -0
  251. data/vendor/bundle/ruby/2.1.0/gems/thor-0.18.1/spec/parser/options_spec.rb +400 -0
  252. data/vendor/bundle/ruby/2.1.0/gems/thor-0.18.1/spec/rake_compat_spec.rb +72 -0
  253. data/vendor/bundle/ruby/2.1.0/gems/thor-0.18.1/spec/register_spec.rb +197 -0
  254. data/vendor/bundle/ruby/2.1.0/gems/thor-0.18.1/spec/runner_spec.rb +241 -0
  255. data/vendor/bundle/ruby/2.1.0/gems/thor-0.18.1/spec/shell/basic_spec.rb +311 -0
  256. data/vendor/bundle/ruby/2.1.0/gems/thor-0.18.1/spec/shell/color_spec.rb +95 -0
  257. data/vendor/bundle/ruby/2.1.0/gems/thor-0.18.1/spec/shell/html_spec.rb +32 -0
  258. data/vendor/bundle/ruby/2.1.0/gems/thor-0.18.1/spec/shell_spec.rb +47 -0
  259. data/vendor/bundle/ruby/2.1.0/gems/thor-0.18.1/spec/subcommand_spec.rb +30 -0
  260. data/vendor/bundle/ruby/2.1.0/gems/thor-0.18.1/spec/thor_spec.rb +491 -0
  261. data/vendor/bundle/ruby/2.1.0/gems/thor-0.18.1/spec/util_spec.rb +196 -0
  262. data/vendor/bundle/ruby/2.1.0/gems/thor-0.18.1/thor.gemspec +24 -0
  263. data/vendor/bundle/ruby/2.1.0/gems/unicode-display_width-0.1.1/LICENSE.txt +22 -0
  264. data/vendor/bundle/ruby/2.1.0/gems/unicode-display_width-0.1.1/README.rdoc +36 -0
  265. data/vendor/bundle/ruby/2.1.0/gems/unicode-display_width-0.1.1/Rakefile +35 -0
  266. data/vendor/bundle/ruby/2.1.0/gems/unicode-display_width-0.1.1/data/EastAsianWidth.index +0 -0
  267. data/vendor/bundle/ruby/2.1.0/gems/unicode-display_width-0.1.1/data/EastAsianWidth.txt +23735 -0
  268. data/vendor/bundle/ruby/2.1.0/gems/unicode-display_width-0.1.1/lib/unicode/display_size.rb +1 -0
  269. data/vendor/bundle/ruby/2.1.0/gems/unicode-display_width-0.1.1/lib/unicode/display_width.rb +76 -0
  270. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/LEGAL +66 -0
  271. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/LICENSE +22 -0
  272. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/README.md +620 -0
  273. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/Rakefile +61 -0
  274. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/benchmarks/builtins_vs_eval.rb +23 -0
  275. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/benchmarks/concat_vs_join.rb +12 -0
  276. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/benchmarks/erb_vs_erubis.rb +53 -0
  277. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/benchmarks/format_args.rb +46 -0
  278. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/benchmarks/generation.rb +37 -0
  279. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/benchmarks/marshal_vs_dbm.rb +63 -0
  280. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/benchmarks/parsing.rb +46 -0
  281. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/benchmarks/pathname_vs_string.rb +50 -0
  282. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/benchmarks/rdoc_vs_yardoc.rb +10 -0
  283. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/benchmarks/registry_store_types.rb +48 -0
  284. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/benchmarks/ri_vs_yri.rb +18 -0
  285. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/benchmarks/ripper_parser.rb +12 -0
  286. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/benchmarks/splat_vs_flatten.rb +12 -0
  287. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/benchmarks/template_erb.rb +22 -0
  288. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/benchmarks/template_format.rb +6 -0
  289. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/benchmarks/template_profile.rb +17 -0
  290. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/benchmarks/yri_cache.rb +19 -0
  291. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/bin/yard +12 -0
  292. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/bin/yardoc +12 -0
  293. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/bin/yri +12 -0
  294. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/docs/CodeObjects.md +115 -0
  295. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/docs/GettingStarted.md +592 -0
  296. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/docs/Handlers.md +152 -0
  297. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/docs/Overview.md +61 -0
  298. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/docs/Parser.md +191 -0
  299. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/docs/Tags.md +282 -0
  300. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/docs/TagsArch.md +123 -0
  301. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/docs/Templates.md +496 -0
  302. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/docs/WhatsNew.md +1244 -0
  303. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/docs/images/code-objects-class-diagram.png +0 -0
  304. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/docs/images/handlers-class-diagram.png +0 -0
  305. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/docs/images/overview-class-diagram.png +0 -0
  306. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/docs/images/parser-class-diagram.png +0 -0
  307. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/docs/images/tags-class-diagram.png +0 -0
  308. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/docs/templates/default/fulldoc/html/full_list_tag.erb +7 -0
  309. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/docs/templates/default/fulldoc/html/setup.rb +6 -0
  310. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/docs/templates/default/layout/html/setup.rb +8 -0
  311. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/docs/templates/default/layout/html/tag_list.erb +11 -0
  312. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/docs/templates/default/yard_tags/html/list.erb +18 -0
  313. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/docs/templates/default/yard_tags/html/setup.rb +27 -0
  314. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/docs/templates/plugin.rb +65 -0
  315. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/rubygems_plugin.rb +4 -0
  316. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard.rb +71 -0
  317. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/autoload.rb +290 -0
  318. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/cli/command.rb +84 -0
  319. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/cli/command_parser.rb +92 -0
  320. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/cli/config.rb +136 -0
  321. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/cli/diff.rb +270 -0
  322. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/cli/display.rb +68 -0
  323. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/cli/gems.rb +83 -0
  324. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/cli/graph.rb +126 -0
  325. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/cli/help.rb +18 -0
  326. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/cli/i18n.rb +69 -0
  327. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/cli/list.rb +22 -0
  328. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/cli/markup_types.rb +33 -0
  329. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/cli/server.rb +253 -0
  330. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/cli/stats.rb +213 -0
  331. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/cli/yardoc.rb +752 -0
  332. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/cli/yardopts_command.rb +109 -0
  333. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/cli/yri.rb +214 -0
  334. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/code_objects/base.rb +585 -0
  335. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/code_objects/class_object.rb +143 -0
  336. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/code_objects/class_variable_object.rb +8 -0
  337. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/code_objects/constant_object.rb +13 -0
  338. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/code_objects/extended_method_object.rb +23 -0
  339. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/code_objects/extra_file_object.rb +128 -0
  340. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/code_objects/macro_object.rb +172 -0
  341. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/code_objects/method_object.rb +191 -0
  342. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/code_objects/module_object.rb +18 -0
  343. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/code_objects/namespace_object.rb +200 -0
  344. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/code_objects/proxy.rb +258 -0
  345. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/code_objects/root_object.rb +17 -0
  346. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/config.rb +270 -0
  347. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/core_ext/array.rb +15 -0
  348. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/core_ext/file.rb +65 -0
  349. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/core_ext/hash.rb +15 -0
  350. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/core_ext/insertion.rb +60 -0
  351. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/core_ext/module.rb +19 -0
  352. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/core_ext/string.rb +67 -0
  353. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/core_ext/symbol_hash.rb +73 -0
  354. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/docstring.rb +362 -0
  355. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/docstring_parser.rb +321 -0
  356. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/globals.rb +18 -0
  357. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/handlers/base.rb +597 -0
  358. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/handlers/c/alias_handler.rb +15 -0
  359. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/handlers/c/attribute_handler.rb +13 -0
  360. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/handlers/c/base.rb +110 -0
  361. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/handlers/c/class_handler.rb +26 -0
  362. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/handlers/c/constant_handler.rb +12 -0
  363. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/handlers/c/handler_methods.rb +166 -0
  364. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/handlers/c/init_handler.rb +18 -0
  365. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/handlers/c/method_handler.rb +35 -0
  366. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/handlers/c/mixin_handler.rb +13 -0
  367. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/handlers/c/module_handler.rb +16 -0
  368. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/handlers/c/override_comment_handler.rb +30 -0
  369. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/handlers/c/path_handler.rb +10 -0
  370. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/handlers/c/struct_handler.rb +12 -0
  371. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/handlers/c/symbol_handler.rb +7 -0
  372. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/handlers/processor.rb +201 -0
  373. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/handlers/ruby/alias_handler.rb +41 -0
  374. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/handlers/ruby/attribute_handler.rb +82 -0
  375. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/handlers/ruby/base.rb +164 -0
  376. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/handlers/ruby/class_condition_handler.rb +86 -0
  377. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/handlers/ruby/class_handler.rb +121 -0
  378. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/handlers/ruby/class_variable_handler.rb +16 -0
  379. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/handlers/ruby/comment_handler.rb +9 -0
  380. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/handlers/ruby/constant_handler.rb +45 -0
  381. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/handlers/ruby/dsl_handler.rb +14 -0
  382. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/handlers/ruby/dsl_handler_methods.rb +77 -0
  383. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/handlers/ruby/exception_handler.rb +26 -0
  384. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/handlers/ruby/extend_handler.rb +21 -0
  385. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/handlers/ruby/legacy/alias_handler.rb +35 -0
  386. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/handlers/ruby/legacy/attribute_handler.rb +60 -0
  387. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/handlers/ruby/legacy/base.rb +250 -0
  388. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/handlers/ruby/legacy/class_condition_handler.rb +83 -0
  389. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/handlers/ruby/legacy/class_handler.rb +111 -0
  390. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/handlers/ruby/legacy/class_variable_handler.rb +14 -0
  391. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/handlers/ruby/legacy/comment_handler.rb +9 -0
  392. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/handlers/ruby/legacy/constant_handler.rb +28 -0
  393. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/handlers/ruby/legacy/dsl_handler.rb +16 -0
  394. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/handlers/ruby/legacy/exception_handler.rb +12 -0
  395. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/handlers/ruby/legacy/extend_handler.rb +20 -0
  396. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/handlers/ruby/legacy/method_handler.rb +85 -0
  397. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/handlers/ruby/legacy/mixin_handler.rb +39 -0
  398. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/handlers/ruby/legacy/module_function_handler.rb +18 -0
  399. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/handlers/ruby/legacy/module_handler.rb +11 -0
  400. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/handlers/ruby/legacy/private_constant_handler.rb +21 -0
  401. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/handlers/ruby/legacy/visibility_handler.rb +16 -0
  402. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/handlers/ruby/legacy/yield_handler.rb +28 -0
  403. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/handlers/ruby/method_condition_handler.rb +8 -0
  404. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/handlers/ruby/method_handler.rb +92 -0
  405. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/handlers/ruby/mixin_handler.rb +36 -0
  406. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/handlers/ruby/module_function_handler.rb +26 -0
  407. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/handlers/ruby/module_handler.rb +11 -0
  408. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/handlers/ruby/private_constant_handler.rb +36 -0
  409. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/handlers/ruby/struct_handler_methods.rb +141 -0
  410. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/handlers/ruby/visibility_handler.rb +24 -0
  411. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/handlers/ruby/yield_handler.rb +30 -0
  412. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/i18n/locale.rb +66 -0
  413. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/i18n/message.rb +56 -0
  414. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/i18n/messages.rb +55 -0
  415. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/i18n/po_parser.rb +60 -0
  416. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/i18n/pot_generator.rb +280 -0
  417. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/i18n/text.rb +173 -0
  418. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/logging.rb +190 -0
  419. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/options.rb +216 -0
  420. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/parser/base.rb +56 -0
  421. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/parser/c/c_parser.rb +231 -0
  422. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/parser/c/comment_parser.rb +131 -0
  423. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/parser/c/statement.rb +63 -0
  424. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/parser/ruby/ast_node.rb +496 -0
  425. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/parser/ruby/legacy/ruby_lex.rb +1377 -0
  426. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/parser/ruby/legacy/ruby_parser.rb +31 -0
  427. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/parser/ruby/legacy/statement.rb +65 -0
  428. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/parser/ruby/legacy/statement_list.rb +384 -0
  429. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/parser/ruby/legacy/token_list.rb +71 -0
  430. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/parser/ruby/ruby_parser.rb +625 -0
  431. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/parser/source_parser.rb +517 -0
  432. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/rake/yardoc_task.rb +74 -0
  433. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/registry.rb +438 -0
  434. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/registry_store.rb +319 -0
  435. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/rubygems/backports.rb +8 -0
  436. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/rubygems/backports/LICENSE.txt +57 -0
  437. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/rubygems/backports/MIT.txt +20 -0
  438. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/rubygems/backports/gem.rb +9 -0
  439. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/rubygems/backports/source_index.rb +370 -0
  440. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/rubygems/doc_manager.rb +88 -0
  441. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/rubygems/specification.rb +41 -0
  442. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/serializers/base.rb +80 -0
  443. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/serializers/file_system_serializer.rb +90 -0
  444. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/serializers/process_serializer.rb +24 -0
  445. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/serializers/stdout_serializer.rb +32 -0
  446. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/serializers/yardoc_serializer.rb +124 -0
  447. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/server.rb +11 -0
  448. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/server/adapter.rb +100 -0
  449. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/server/commands/base.rb +192 -0
  450. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/server/commands/display_file_command.rb +24 -0
  451. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/server/commands/display_object_command.rb +58 -0
  452. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/server/commands/frames_command.rb +15 -0
  453. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/server/commands/library_command.rb +148 -0
  454. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/server/commands/library_index_command.rb +24 -0
  455. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/server/commands/list_command.rb +24 -0
  456. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/server/commands/search_command.rb +78 -0
  457. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/server/commands/static_file_command.rb +57 -0
  458. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/server/doc_server_helper.rb +76 -0
  459. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/server/doc_server_serializer.rb +43 -0
  460. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/server/library_version.rb +227 -0
  461. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/server/rack_adapter.rb +88 -0
  462. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/server/router.rb +176 -0
  463. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/server/static_caching.rb +45 -0
  464. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/server/templates/default/fulldoc/html/css/custom.css +78 -0
  465. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/server/templates/default/fulldoc/html/images/processing.gif +0 -0
  466. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/server/templates/default/fulldoc/html/js/autocomplete.js +12 -0
  467. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/server/templates/default/layout/html/breadcrumb.erb +46 -0
  468. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/server/templates/default/layout/html/script_setup.erb +8 -0
  469. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/server/templates/default/layout/html/setup.rb +7 -0
  470. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/server/templates/default/method_details/html/permalink.erb +4 -0
  471. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/server/templates/default/method_details/html/setup.rb +4 -0
  472. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/server/templates/doc_server/library_list/html/contents.erb +13 -0
  473. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/server/templates/doc_server/library_list/html/headers.erb +26 -0
  474. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/server/templates/doc_server/library_list/html/library_list.erb +12 -0
  475. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/server/templates/doc_server/library_list/html/setup.rb +3 -0
  476. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/server/templates/doc_server/library_list/html/title.erb +2 -0
  477. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/server/templates/doc_server/processing/html/processing.erb +51 -0
  478. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/server/templates/doc_server/processing/html/setup.rb +3 -0
  479. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/server/templates/doc_server/search/html/search.erb +18 -0
  480. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/server/templates/doc_server/search/html/setup.rb +8 -0
  481. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/server/webrick_adapter.rb +43 -0
  482. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/tags/default_factory.rb +176 -0
  483. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/tags/default_tag.rb +12 -0
  484. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/tags/directives.rb +599 -0
  485. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/tags/library.rb +630 -0
  486. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/tags/option_tag.rb +12 -0
  487. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/tags/overload_tag.rb +66 -0
  488. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/tags/ref_tag.rb +7 -0
  489. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/tags/ref_tag_list.rb +27 -0
  490. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/tags/tag.rb +57 -0
  491. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/tags/tag_format_error.rb +6 -0
  492. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/templates/engine.rb +185 -0
  493. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/templates/erb_cache.rb +22 -0
  494. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/templates/helpers/base_helper.rb +212 -0
  495. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/templates/helpers/filter_helper.rb +26 -0
  496. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/templates/helpers/html_helper.rb +599 -0
  497. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/templates/helpers/html_syntax_highlight_helper.rb +60 -0
  498. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/templates/helpers/markup/rdoc_markdown.rb +22 -0
  499. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/templates/helpers/markup/rdoc_markup.rb +106 -0
  500. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/templates/helpers/markup_helper.rb +169 -0
  501. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/templates/helpers/method_helper.rb +74 -0
  502. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/templates/helpers/module_helper.rb +19 -0
  503. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/templates/helpers/text_helper.rb +95 -0
  504. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/templates/helpers/uml_helper.rb +46 -0
  505. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/templates/section.rb +106 -0
  506. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/templates/template.rb +407 -0
  507. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/templates/template_options.rb +88 -0
  508. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/verifier.rb +148 -0
  509. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/version.rb +3 -0
  510. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/cli/command_parser_spec.rb +43 -0
  511. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/cli/command_spec.rb +36 -0
  512. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/cli/config_spec.rb +92 -0
  513. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/cli/diff_spec.rb +260 -0
  514. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/cli/display_spec.rb +30 -0
  515. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/cli/gems_spec.rb +81 -0
  516. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/cli/graph_spec.rb +17 -0
  517. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/cli/help_spec.rb +22 -0
  518. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/cli/i18n_spec.rb +111 -0
  519. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/cli/list_spec.rb +8 -0
  520. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/cli/markup_types_spec.rb +22 -0
  521. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/cli/server_spec.rb +327 -0
  522. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/cli/stats_spec.rb +90 -0
  523. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/cli/yardoc_spec.rb +804 -0
  524. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/cli/yri_spec.rb +99 -0
  525. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/code_objects/base_spec.rb +438 -0
  526. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/code_objects/class_object_spec.rb +225 -0
  527. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/code_objects/code_object_list_spec.rb +33 -0
  528. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/code_objects/constants_spec.rb +82 -0
  529. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/code_objects/extra_file_object_spec.rb +147 -0
  530. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/code_objects/macro_object_spec.rb +148 -0
  531. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/code_objects/method_object_spec.rb +175 -0
  532. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/code_objects/module_object_spec.rb +141 -0
  533. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/code_objects/namespace_object_spec.rb +170 -0
  534. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/code_objects/proxy_spec.rb +140 -0
  535. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/code_objects/spec_helper.rb +3 -0
  536. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/config_spec.rb +176 -0
  537. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/core_ext/array_spec.rb +14 -0
  538. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/core_ext/file_spec.rb +68 -0
  539. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/core_ext/hash_spec.rb +14 -0
  540. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/core_ext/insertion_spec.rb +37 -0
  541. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/core_ext/module_spec.rb +15 -0
  542. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/core_ext/string_spec.rb +42 -0
  543. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/core_ext/symbol_hash_spec.rb +86 -0
  544. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/docstring_parser_spec.rb +228 -0
  545. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/docstring_spec.rb +335 -0
  546. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/handlers/alias_handler_spec.rb +81 -0
  547. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/handlers/attribute_handler_spec.rb +94 -0
  548. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/handlers/base_spec.rb +206 -0
  549. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/handlers/c/alias_handler_spec.rb +33 -0
  550. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/handlers/c/attribute_handler_spec.rb +40 -0
  551. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/handlers/c/class_handler_spec.rb +63 -0
  552. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/handlers/c/constant_handler_spec.rb +68 -0
  553. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/handlers/c/init_handler_spec.rb +47 -0
  554. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/handlers/c/method_handler_spec.rb +239 -0
  555. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/handlers/c/mixin_handler_spec.rb +27 -0
  556. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/handlers/c/module_handler_spec.rb +38 -0
  557. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/handlers/c/override_comment_handler_spec.rb +46 -0
  558. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/handlers/c/path_handler_spec.rb +35 -0
  559. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/handlers/c/spec_helper.rb +13 -0
  560. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/handlers/c/struct_handler_spec.rb +15 -0
  561. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/handlers/class_condition_handler_spec.rb +67 -0
  562. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/handlers/class_handler_spec.rb +246 -0
  563. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/handlers/class_variable_handler_spec.rb +11 -0
  564. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/handlers/constant_handler_spec.rb +64 -0
  565. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/handlers/dsl_handler_spec.rb +197 -0
  566. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/handlers/examples/alias_handler_001.rb.txt +46 -0
  567. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/handlers/examples/attribute_handler_001.rb.txt +32 -0
  568. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/handlers/examples/class_condition_handler_001.rb.txt +69 -0
  569. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/handlers/examples/class_handler_001.rb.txt +120 -0
  570. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/handlers/examples/class_variable_handler_001.rb.txt +10 -0
  571. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/handlers/examples/constant_handler_001.rb.txt +25 -0
  572. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/handlers/examples/dsl_handler_001.rb.txt +125 -0
  573. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/handlers/examples/exception_handler_001.rb.txt +59 -0
  574. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/handlers/examples/extend_handler_001.rb.txt +16 -0
  575. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/handlers/examples/method_condition_handler_001.rb.txt +10 -0
  576. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/handlers/examples/method_handler_001.rb.txt +126 -0
  577. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/handlers/examples/mixin_handler_001.rb.txt +37 -0
  578. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/handlers/examples/module_handler_001.rb.txt +29 -0
  579. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/handlers/examples/private_constant_handler_001.rb.txt +8 -0
  580. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/handlers/examples/process_handler_001.rb.txt +11 -0
  581. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/handlers/examples/visibility_handler_001.rb.txt +32 -0
  582. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/handlers/examples/yield_handler_001.rb.txt +54 -0
  583. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/handlers/exception_handler_spec.rb +48 -0
  584. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/handlers/extend_handler_spec.rb +23 -0
  585. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/handlers/legacy_base_spec.rb +128 -0
  586. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/handlers/method_condition_handler_spec.rb +14 -0
  587. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/handlers/method_handler_spec.rb +184 -0
  588. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/handlers/mixin_handler_spec.rb +55 -0
  589. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/handlers/module_function_handler_spec.rb +105 -0
  590. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/handlers/module_handler_spec.rb +34 -0
  591. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/handlers/private_constant_handler_spec.rb +24 -0
  592. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/handlers/processor_spec.rb +34 -0
  593. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/handlers/ruby/base_spec.rb +94 -0
  594. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/handlers/ruby/legacy/base_spec.rb +82 -0
  595. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/handlers/spec_helper.rb +33 -0
  596. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/handlers/visibility_handler_spec.rb +39 -0
  597. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/handlers/yield_handler_spec.rb +51 -0
  598. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/i18n/locale_spec.rb +81 -0
  599. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/i18n/message_spec.rb +52 -0
  600. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/i18n/messages_spec.rb +67 -0
  601. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/i18n/pot_generator_spec.rb +262 -0
  602. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/i18n/text_spec.rb +180 -0
  603. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/logging_spec.rb +35 -0
  604. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/options_spec.rb +171 -0
  605. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/parser/base_spec.rb +24 -0
  606. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/parser/c_parser_spec.rb +171 -0
  607. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/parser/examples/array.c.txt +3887 -0
  608. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/parser/examples/example1.rb.txt +8 -0
  609. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/parser/examples/extrafile.c.txt +8 -0
  610. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/parser/examples/multifile.c.txt +22 -0
  611. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/parser/examples/override.c.txt +424 -0
  612. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/parser/examples/parse_in_order_001.rb.txt +2 -0
  613. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/parser/examples/parse_in_order_002.rb.txt +2 -0
  614. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/parser/examples/tag_handler_001.rb.txt +8 -0
  615. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/parser/ruby/ast_node_spec.rb +33 -0
  616. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/parser/ruby/legacy/statement_list_spec.rb +299 -0
  617. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/parser/ruby/legacy/token_list_spec.rb +77 -0
  618. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/parser/ruby/ruby_parser_spec.rb +334 -0
  619. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/parser/source_parser_spec.rb +717 -0
  620. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/parser/tag_parsing_spec.rb +18 -0
  621. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/rake/yardoc_task_spec.rb +101 -0
  622. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/registry_spec.rb +393 -0
  623. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/registry_store_spec.rb +315 -0
  624. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/rubygems/doc_manager_spec.rb +112 -0
  625. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/serializers/data/serialized_yardoc/checksums +1 -0
  626. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/serializers/data/serialized_yardoc/objects/Foo.dat +0 -0
  627. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/serializers/data/serialized_yardoc/objects/Foo/bar_i.dat +0 -0
  628. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/serializers/data/serialized_yardoc/objects/Foo/baz_i.dat +0 -0
  629. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/serializers/data/serialized_yardoc/objects/root.dat +0 -0
  630. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/serializers/data/serialized_yardoc/proxy_types +2 -0
  631. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/serializers/file_system_serializer_spec.rb +124 -0
  632. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/serializers/spec_helper.rb +2 -0
  633. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/serializers/yardoc_serializer_spec.rb +46 -0
  634. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/server/adapter_spec.rb +38 -0
  635. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/server/commands/base_spec.rb +87 -0
  636. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/server/commands/library_command_spec.rb +39 -0
  637. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/server/commands/static_file_command_spec.rb +84 -0
  638. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/server/doc_server_helper_spec.rb +53 -0
  639. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/server/doc_server_serializer_spec.rb +50 -0
  640. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/server/rack_adapter_spec.rb +20 -0
  641. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/server/router_spec.rb +122 -0
  642. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/server/spec_helper.rb +17 -0
  643. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/server/static_caching_spec.rb +39 -0
  644. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/server/webrick_servlet_spec.rb +20 -0
  645. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/server_spec.rb +10 -0
  646. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/spec_helper.rb +128 -0
  647. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/tags/default_factory_spec.rb +152 -0
  648. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/tags/default_tag_spec.rb +11 -0
  649. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/tags/directives_spec.rb +453 -0
  650. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/tags/library_spec.rb +34 -0
  651. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/tags/overload_tag_spec.rb +53 -0
  652. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/tags/ref_tag_list_spec.rb +53 -0
  653. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/templates/class_spec.rb +44 -0
  654. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/templates/constant_spec.rb +40 -0
  655. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/templates/engine_spec.rb +121 -0
  656. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/templates/examples/class001.html +280 -0
  657. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/templates/examples/class001.txt +36 -0
  658. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/templates/examples/class002.html +35 -0
  659. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/templates/examples/constant001.txt +25 -0
  660. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/templates/examples/constant002.txt +7 -0
  661. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/templates/examples/constant003.txt +11 -0
  662. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/templates/examples/method001.html +130 -0
  663. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/templates/examples/method001.txt +35 -0
  664. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/templates/examples/method002.html +86 -0
  665. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/templates/examples/method002.txt +20 -0
  666. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/templates/examples/method003.html +159 -0
  667. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/templates/examples/method003.txt +45 -0
  668. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/templates/examples/method004.html +44 -0
  669. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/templates/examples/method004.txt +10 -0
  670. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/templates/examples/method005.html +99 -0
  671. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/templates/examples/method005.txt +33 -0
  672. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/templates/examples/module001.dot +33 -0
  673. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/templates/examples/module001.html +825 -0
  674. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/templates/examples/module001.txt +33 -0
  675. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/templates/examples/module002.html +318 -0
  676. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/templates/examples/module003.html +185 -0
  677. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/templates/examples/module004.html +387 -0
  678. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/templates/examples/tag001.txt +82 -0
  679. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/templates/helpers/base_helper_spec.rb +175 -0
  680. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/templates/helpers/html_helper_spec.rb +612 -0
  681. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/templates/helpers/html_syntax_highlight_helper_spec.rb +53 -0
  682. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/templates/helpers/markup/rdoc_markup_spec.rb +93 -0
  683. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/templates/helpers/markup_helper_spec.rb +135 -0
  684. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/templates/helpers/method_helper_spec.rb +82 -0
  685. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/templates/helpers/shared_signature_examples.rb +123 -0
  686. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/templates/helpers/text_helper_spec.rb +44 -0
  687. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/templates/method_spec.rb +102 -0
  688. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/templates/module_spec.rb +181 -0
  689. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/templates/onefile_spec.rb +64 -0
  690. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/templates/section_spec.rb +146 -0
  691. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/templates/spec_helper.rb +73 -0
  692. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/templates/tag_spec.rb +51 -0
  693. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/templates/template_spec.rb +409 -0
  694. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/verifier_spec.rb +106 -0
  695. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/default/class/dot/setup.rb +6 -0
  696. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/default/class/dot/superklass.erb +3 -0
  697. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/default/class/html/constructor_details.erb +8 -0
  698. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/default/class/html/setup.rb +1 -0
  699. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/default/class/html/subclasses.erb +4 -0
  700. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/default/class/setup.rb +36 -0
  701. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/default/class/text/setup.rb +11 -0
  702. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/default/class/text/subclasses.erb +5 -0
  703. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/default/constant/text/header.erb +11 -0
  704. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/default/constant/text/setup.rb +3 -0
  705. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/default/docstring/html/abstract.erb +4 -0
  706. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/default/docstring/html/deprecated.erb +1 -0
  707. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/default/docstring/html/index.erb +5 -0
  708. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/default/docstring/html/note.erb +6 -0
  709. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/default/docstring/html/private.erb +4 -0
  710. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/default/docstring/html/returns_void.erb +1 -0
  711. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/default/docstring/html/text.erb +1 -0
  712. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/default/docstring/html/todo.erb +6 -0
  713. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/default/docstring/setup.rb +51 -0
  714. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/default/docstring/text/abstract.erb +2 -0
  715. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/default/docstring/text/deprecated.erb +2 -0
  716. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/default/docstring/text/index.erb +2 -0
  717. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/default/docstring/text/note.erb +4 -0
  718. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/default/docstring/text/private.erb +2 -0
  719. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/default/docstring/text/returns_void.erb +1 -0
  720. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/default/docstring/text/text.erb +1 -0
  721. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/default/docstring/text/todo.erb +4 -0
  722. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/default/fulldoc/html/css/common.css +1 -0
  723. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/default/fulldoc/html/css/full_list.css +57 -0
  724. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/default/fulldoc/html/css/style.css +338 -0
  725. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/default/fulldoc/html/frames.erb +26 -0
  726. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/default/fulldoc/html/full_list.erb +40 -0
  727. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/default/fulldoc/html/full_list_class.erb +2 -0
  728. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/default/fulldoc/html/full_list_file.erb +5 -0
  729. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/default/fulldoc/html/full_list_method.erb +8 -0
  730. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/default/fulldoc/html/js/app.js +219 -0
  731. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/default/fulldoc/html/js/full_list.js +178 -0
  732. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/default/fulldoc/html/js/jquery.js +4 -0
  733. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/default/fulldoc/html/setup.rb +199 -0
  734. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/default/layout/dot/header.erb +6 -0
  735. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/default/layout/dot/setup.rb +14 -0
  736. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/default/layout/html/breadcrumb.erb +13 -0
  737. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/default/layout/html/files.erb +11 -0
  738. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/default/layout/html/footer.erb +5 -0
  739. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/default/layout/html/headers.erb +14 -0
  740. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/default/layout/html/index.erb +2 -0
  741. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/default/layout/html/layout.erb +20 -0
  742. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/default/layout/html/listing.erb +4 -0
  743. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/default/layout/html/objects.erb +32 -0
  744. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/default/layout/html/script_setup.erb +5 -0
  745. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/default/layout/html/search.erb +8 -0
  746. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/default/layout/html/setup.rb +71 -0
  747. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/default/method/html/header.erb +16 -0
  748. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/default/method/setup.rb +3 -0
  749. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/default/method/text/header.erb +1 -0
  750. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/default/method_details/html/header.erb +3 -0
  751. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/default/method_details/html/method_signature.erb +25 -0
  752. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/default/method_details/html/source.erb +10 -0
  753. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/default/method_details/setup.rb +10 -0
  754. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/default/method_details/text/header.erb +10 -0
  755. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/default/method_details/text/method_signature.erb +12 -0
  756. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/default/method_details/text/setup.rb +10 -0
  757. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/default/module/dot/child.erb +1 -0
  758. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/default/module/dot/dependencies.erb +3 -0
  759. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/default/module/dot/header.erb +6 -0
  760. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/default/module/dot/info.erb +14 -0
  761. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/default/module/dot/setup.rb +14 -0
  762. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/default/module/html/attribute_details.erb +10 -0
  763. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/default/module/html/attribute_summary.erb +8 -0
  764. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/default/module/html/box_info.erb +37 -0
  765. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/default/module/html/children.erb +8 -0
  766. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/default/module/html/constant_summary.erb +13 -0
  767. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/default/module/html/defines.erb +3 -0
  768. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/default/module/html/header.erb +5 -0
  769. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/default/module/html/inherited_attributes.erb +14 -0
  770. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/default/module/html/inherited_constants.erb +8 -0
  771. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/default/module/html/inherited_methods.erb +19 -0
  772. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/default/module/html/item_summary.erb +40 -0
  773. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/default/module/html/method_details_list.erb +9 -0
  774. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/default/module/html/method_summary.erb +14 -0
  775. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/default/module/html/methodmissing.erb +12 -0
  776. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/default/module/html/pre_docstring.erb +1 -0
  777. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/default/module/setup.rb +164 -0
  778. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/default/module/text/children.erb +10 -0
  779. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/default/module/text/class_meths_list.erb +8 -0
  780. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/default/module/text/extends.erb +8 -0
  781. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/default/module/text/header.erb +7 -0
  782. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/default/module/text/includes.erb +8 -0
  783. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/default/module/text/instance_meths_list.erb +8 -0
  784. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/default/module/text/setup.rb +12 -0
  785. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/default/onefile/html/files.erb +5 -0
  786. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/default/onefile/html/headers.erb +6 -0
  787. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/default/onefile/html/layout.erb +17 -0
  788. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/default/onefile/html/readme.erb +3 -0
  789. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/default/onefile/html/setup.rb +61 -0
  790. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/default/root/dot/child.erb +3 -0
  791. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/default/root/dot/setup.rb +5 -0
  792. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/default/root/html/setup.rb +1 -0
  793. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/default/tags/html/example.erb +11 -0
  794. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/default/tags/html/index.erb +3 -0
  795. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/default/tags/html/option.erb +24 -0
  796. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/default/tags/html/overload.erb +14 -0
  797. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/default/tags/html/see.erb +8 -0
  798. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/default/tags/html/tag.erb +20 -0
  799. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/default/tags/setup.rb +55 -0
  800. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/default/tags/text/example.erb +12 -0
  801. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/default/tags/text/index.erb +1 -0
  802. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/default/tags/text/option.erb +20 -0
  803. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/default/tags/text/overload.erb +19 -0
  804. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/default/tags/text/see.erb +11 -0
  805. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/default/tags/text/tag.erb +13 -0
  806. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/guide/class/html/setup.rb +1 -0
  807. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/guide/docstring/html/setup.rb +1 -0
  808. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/guide/fulldoc/html/css/style.css +108 -0
  809. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/guide/fulldoc/html/js/app.js +33 -0
  810. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/guide/fulldoc/html/setup.rb +73 -0
  811. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/guide/layout/html/layout.erb +81 -0
  812. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/guide/layout/html/setup.rb +28 -0
  813. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/guide/method/html/header.erb +18 -0
  814. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/guide/method/html/setup.rb +21 -0
  815. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/guide/module/html/header.erb +7 -0
  816. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/guide/module/html/method_list.erb +5 -0
  817. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/guide/module/html/setup.rb +26 -0
  818. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/guide/onefile/html/files.erb +4 -0
  819. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/guide/onefile/html/setup.rb +5 -0
  820. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/guide/onefile/html/toc.erb +3 -0
  821. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/templates/guide/tags/html/setup.rb +8 -0
  822. data/vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/yard.gemspec +25 -0
  823. data/vendor/bundle/ruby/2.1.0/specifications/hashie-2.0.5.gemspec +44 -0
  824. data/vendor/bundle/ruby/2.1.0/specifications/hirb-0.7.1.gemspec +43 -0
  825. data/vendor/bundle/ruby/2.1.0/specifications/hirb-unicode-0.0.5.gemspec +47 -0
  826. data/vendor/bundle/ruby/2.1.0/specifications/redcarpet-3.0.0.gemspec +49 -0
  827. data/vendor/bundle/ruby/2.1.0/specifications/thor-0.18.1.gemspec +34 -0
  828. data/vendor/bundle/ruby/2.1.0/specifications/unicode-display_width-0.1.1.gemspec +22 -0
  829. data/vendor/bundle/ruby/2.1.0/specifications/yard-0.8.7.3.gemspec +23 -0
  830. metadata +913 -90
@@ -0,0 +1,90 @@
1
+ require File.dirname(__FILE__) + '/../spec_helper'
2
+ require 'stringio'
3
+
4
+ describe YARD::CLI::Stats do
5
+ before do
6
+ Registry.clear
7
+ YARD.parse_string <<-eof
8
+ class A
9
+ CONST = 1
10
+
11
+ def foo; end
12
+
13
+ # Documented
14
+ def bar; end
15
+ end
16
+ module B; end
17
+ eof
18
+
19
+ @main_stats =
20
+ "Files: 1\n" +
21
+ "Modules: 1 ( 1 undocumented)\n" +
22
+ "Classes: 1 ( 1 undocumented)\n" +
23
+ "Constants: 1 ( 1 undocumented)\n" +
24
+ "Methods: 2 ( 1 undocumented)\n" +
25
+ " 20.00% documented\n"
26
+
27
+ @output = StringIO.new
28
+ @stats = CLI::Stats.new(false)
29
+ @stats.stub!(:support_rdoc_document_file!).and_return([])
30
+ @stats.stub!(:yardopts).and_return([])
31
+ log.stub!(:puts) {|*args| @output << args.join("\n") << "\n" }
32
+ end
33
+
34
+ it "should list undocumented objects with --list-undoc" do
35
+ @stats.run('--list-undoc')
36
+ @output.string.should == <<-eof
37
+ #{@main_stats}
38
+ Undocumented Objects:
39
+
40
+ (in file: (stdin))
41
+ B
42
+ A
43
+ A::CONST
44
+ A#foo
45
+ eof
46
+ end
47
+
48
+ it "should list no undocumented objects with --list-undoc when objects are undocumented" do
49
+ Registry.clear
50
+ YARD.parse_string <<-eof
51
+ # documentation
52
+ def foo; end
53
+ eof
54
+ @stats.run('--list-undoc')
55
+ @output.string.should == "Files: 1\n" +
56
+ "Modules: 0 ( 0 undocumented)\n" +
57
+ "Classes: 0 ( 0 undocumented)\n" +
58
+ "Constants: 0 ( 0 undocumented)\n" +
59
+ "Methods: 1 ( 0 undocumented)\n" +
60
+ " 100.00% documented\n"
61
+ end
62
+
63
+ it "should list undocumented objects in compact mode with --list-undoc --compact" do
64
+ @stats.run('--list-undoc', '--compact')
65
+ @output.string.should == <<-eof
66
+ #{@main_stats}
67
+ Undocumented Objects:
68
+ B ((stdin):9)
69
+ A ((stdin):1)
70
+ A::CONST ((stdin):2)
71
+ A#foo ((stdin):4)
72
+ eof
73
+ end
74
+
75
+ it "should still list stats with --quiet" do
76
+ @stats.run('--quiet')
77
+ @output.string.should == @main_stats
78
+ end
79
+
80
+ it "should ignore everything with --no-public" do
81
+ @stats.run('--no-public')
82
+ @output.string.should ==
83
+ "Files: 0\n" +
84
+ "Modules: 0 ( 0 undocumented)\n" +
85
+ "Classes: 0 ( 0 undocumented)\n" +
86
+ "Constants: 0 ( 0 undocumented)\n" +
87
+ "Methods: 0 ( 0 undocumented)\n" +
88
+ " 0.00% documented\n"
89
+ end
90
+ end
@@ -0,0 +1,804 @@
1
+ require File.dirname(__FILE__) + '/../spec_helper'
2
+
3
+ describe YARD::CLI::Yardoc do
4
+ before do
5
+ @yardoc = YARD::CLI::Yardoc.new
6
+ @yardoc.statistics = false
7
+ @yardoc.use_document_file = false
8
+ @yardoc.use_yardopts_file = false
9
+ @yardoc.generate = false
10
+ Templates::Engine.stub!(:render)
11
+ Templates::Engine.stub!(:generate)
12
+ YARD.stub!(:parse)
13
+ Registry.stub!(:load)
14
+ Registry.stub!(:save)
15
+ end
16
+
17
+ describe 'Defaults' do
18
+ before do
19
+ @yardoc = CLI::Yardoc.new
20
+ @yardoc.stub!(:yardopts).and_return([])
21
+ @yardoc.stub!(:support_rdoc_document_file!).and_return([])
22
+ @yardoc.parse_arguments
23
+ end
24
+
25
+ it "should use cache by default" do
26
+ @yardoc.use_cache.should == false
27
+ end
28
+
29
+ it "print statistics by default" do
30
+ @yardoc.statistics.should == true
31
+ end
32
+
33
+ it "should generate output by default" do
34
+ @yardoc.generate.should == true
35
+ end
36
+
37
+ it "should read .yardopts by default" do
38
+ @yardoc.use_yardopts_file.should == true
39
+ end
40
+
41
+ it "should read .document by default" do
42
+ @yardoc.use_document_file.should == true
43
+ end
44
+
45
+ it "should use {lib,app}/**/*.rb and ext/**/*.c as default file glob" do
46
+ @yardoc.files.should == ['{lib,app}/**/*.rb', 'ext/**/*.c']
47
+ end
48
+
49
+ it "should use rdoc as default markup type (but falls back on none)" do
50
+ @yardoc.options.markup.should == :rdoc
51
+ end
52
+
53
+ it "should use default as default template" do
54
+ @yardoc.options.template.should == :default
55
+ end
56
+
57
+ it "should use HTML as default format" do
58
+ @yardoc.options.format.should == :html
59
+ end
60
+
61
+ it "should use 'Object' as default return type" do
62
+ @yardoc.options.default_return.should == 'Object'
63
+ end
64
+
65
+ it "should not hide void return types by default" do
66
+ @yardoc.options.hide_void_return.should == false
67
+ end
68
+
69
+ it "should only show public visibility by default" do
70
+ @yardoc.visibilities.should == [:public]
71
+ end
72
+
73
+ it "should not list objects by default" do
74
+ @yardoc.list.should == false
75
+ end
76
+
77
+ it "should not embed mixins by default" do
78
+ @yardoc.options.embed_mixins.should be_empty
79
+ end
80
+
81
+ it "should not set any locale by default" do
82
+ @yardoc.options.locale.should be_nil
83
+ end
84
+ end
85
+
86
+ describe 'General options' do
87
+ def self.should_accept(*args, &block)
88
+ @counter ||= 0
89
+ @counter += 1
90
+ counter = @counter
91
+ args.each do |arg|
92
+ define_method("test_options_#{@counter}", &block)
93
+ it("should accept #{arg}") { send("test_options_#{counter}", arg) }
94
+ end
95
+ end
96
+
97
+ should_accept('--single-db') do |arg|
98
+ @yardoc.parse_arguments(arg)
99
+ Registry.single_object_db.should == true
100
+ Registry.single_object_db = nil
101
+ end
102
+
103
+ should_accept('--no-single-db') do |arg|
104
+ @yardoc.parse_arguments(arg)
105
+ Registry.single_object_db.should == false
106
+ Registry.single_object_db = nil
107
+ end
108
+
109
+ should_accept('-c', '--use-cache') do |arg|
110
+ @yardoc.parse_arguments(arg)
111
+ @yardoc.use_cache.should == true
112
+ end
113
+
114
+ should_accept('--no-cache') do |arg|
115
+ @yardoc.parse_arguments(arg)
116
+ @yardoc.use_cache.should == false
117
+ end
118
+
119
+ should_accept('--yardopts') do |arg|
120
+ @yardoc = CLI::Yardoc.new
121
+ @yardoc.use_document_file = false
122
+ @yardoc.should_receive(:yardopts).at_least(1).times.and_return([])
123
+ @yardoc.parse_arguments(arg)
124
+ @yardoc.use_yardopts_file.should == true
125
+ @yardoc.parse_arguments('--no-yardopts', arg)
126
+ @yardoc.use_yardopts_file.should == true
127
+ end
128
+
129
+ should_accept('--yardopts with filename') do |arg|
130
+ @yardoc = CLI::Yardoc.new
131
+ File.should_receive(:read_binary).with('.foobar').and_return('')
132
+ @yardoc.use_document_file = false
133
+ @yardoc.parse_arguments('--yardopts', '.foobar')
134
+ @yardoc.use_yardopts_file.should == true
135
+ @yardoc.options_file.should == '.foobar'
136
+ end
137
+
138
+ should_accept('--no-yardopts') do |arg|
139
+ @yardoc = CLI::Yardoc.new
140
+ @yardoc.use_document_file = false
141
+ @yardoc.should_not_receive(:yardopts)
142
+ @yardoc.parse_arguments(arg)
143
+ @yardoc.use_yardopts_file.should == false
144
+ @yardoc.parse_arguments('--yardopts', arg)
145
+ @yardoc.use_yardopts_file.should == false
146
+ end
147
+
148
+ should_accept('--document') do |arg|
149
+ @yardoc = CLI::Yardoc.new
150
+ @yardoc.use_yardopts_file = false
151
+ @yardoc.should_receive(:support_rdoc_document_file!).and_return([])
152
+ @yardoc.parse_arguments('--no-document', arg)
153
+ @yardoc.use_document_file.should == true
154
+ end
155
+
156
+ should_accept('--no-document') do |arg|
157
+ @yardoc = CLI::Yardoc.new
158
+ @yardoc.use_yardopts_file = false
159
+ @yardoc.should_not_receive(:support_rdoc_document_file!)
160
+ @yardoc.parse_arguments('--document', arg)
161
+ @yardoc.use_document_file.should == false
162
+ end
163
+
164
+ should_accept('-b', '--db') do |arg|
165
+ @yardoc.parse_arguments(arg, 'test')
166
+ Registry.yardoc_file.should == 'test'
167
+ Registry.yardoc_file = '.yardoc'
168
+ end
169
+
170
+ should_accept('-n', '--no-output') do |arg|
171
+ Templates::Engine.should_not_receive(:generate)
172
+ @yardoc.run(arg)
173
+ end
174
+
175
+ should_accept('--exclude') do |arg|
176
+ YARD.should_receive(:parse).with(['a'], ['nota', 'b'])
177
+ @yardoc.run(arg, 'nota', arg, 'b', 'a')
178
+ end
179
+
180
+ should_accept('--no-save') do |arg|
181
+ YARD.should_receive(:parse)
182
+ Registry.should_not_receive(:save)
183
+ @yardoc.run(arg)
184
+ end
185
+ end
186
+
187
+ describe 'Output options' do
188
+ it "should accept --title" do
189
+ @yardoc.parse_arguments('--title', 'hello world')
190
+ @yardoc.options.title.should == 'hello world'
191
+ end
192
+
193
+ it "should allow --title to have multiple spaces in .yardopts" do
194
+ File.should_receive(:read_binary).with("test").and_return("--title \"Foo Bar\"")
195
+ @yardoc.options_file = "test"
196
+ @yardoc.use_yardopts_file = true
197
+ @yardoc.run
198
+ @yardoc.options.title.should == "Foo Bar"
199
+ end
200
+
201
+ it "should alias --main to the --readme flag" do
202
+ readme = File.join(File.dirname(__FILE__),'..','..','README.md')
203
+
204
+ @yardoc.parse_arguments('--main', readme)
205
+ @yardoc.options.readme.should == CodeObjects::ExtraFileObject.new(readme, '')
206
+ end
207
+
208
+ it "should select a markup provider when --markup-provider or -mp is set" do
209
+ @yardoc.parse_arguments("-M", "test")
210
+ @yardoc.options.markup_provider.should == :test
211
+ @yardoc.parse_arguments("--markup-provider", "test2")
212
+ @yardoc.options.markup_provider.should == :test2
213
+ end
214
+
215
+ it "should select a markup format when -m is set" do
216
+ @yardoc.should_receive(:verify_markup_options).and_return(true)
217
+ @yardoc.generate = true
218
+ @yardoc.parse_arguments('-m', 'markdown')
219
+ @yardoc.options.markup.should == :markdown
220
+ end
221
+
222
+ it "should accept --default-return" do
223
+ @yardoc.parse_arguments *%w( --default-return XYZ )
224
+ @yardoc.options.default_return.should == "XYZ"
225
+ end
226
+
227
+ it "should allow --hide-void-return to be set" do
228
+ @yardoc.parse_arguments *%w( --hide-void-return )
229
+ @yardoc.options.hide_void_return.should be_true
230
+ end
231
+
232
+ it "should accept --embed-mixins" do
233
+ @yardoc.parse_arguments *%w( --embed-mixins )
234
+ @yardoc.options.embed_mixins.should == ['*']
235
+ end
236
+
237
+ it "should accept --embed-mixin MODULE" do
238
+ @yardoc.parse_arguments *%w( --embed-mixin MyModule )
239
+ @yardoc.options.embed_mixins.should == ['MyModule']
240
+ end
241
+
242
+ it "should generate all objects with --use-cache" do
243
+ YARD.should_receive(:parse)
244
+ Registry.should_receive(:load)
245
+ Registry.should_receive(:load_all)
246
+ @yardoc.stub!(:generate).and_return(true)
247
+ @yardoc.run *%w( --use-cache )
248
+ end
249
+
250
+ it "should not print statistics with --no-stats" do
251
+ @yardoc.stub!(:statistics).and_return(false)
252
+ CLI::Stats.should_not_receive(:new)
253
+ @yardoc.run *%w( --no-stats )
254
+ end
255
+
256
+ describe '--asset' do
257
+ before do
258
+ @yardoc.generate = true
259
+ @yardoc.stub!(:run_generate)
260
+ end
261
+
262
+ it "should copy assets to output directory" do
263
+ FileUtils.should_receive(:cp_r).with('a', 'doc/a')
264
+ @yardoc.run *%w( --asset a )
265
+ @yardoc.assets.should == {'a' => 'a'}
266
+ end
267
+
268
+ it "should allow multiple --asset options" do
269
+ FileUtils.should_receive(:cp_r).with('a', 'doc/a')
270
+ FileUtils.should_receive(:cp_r).with('b', 'doc/b')
271
+ @yardoc.run *%w( --asset a --asset b )
272
+ @yardoc.assets.should == {'a' => 'a', 'b' => 'b'}
273
+ end
274
+
275
+ it "should not allow from or to to refer to a path above current path" do
276
+ log.should_receive(:warn).exactly(4).times.with(/invalid/i)
277
+ @yardoc.run *%w( --asset ../../../etc/passwd )
278
+ @yardoc.assets.should be_empty
279
+ @yardoc.run *%w( --asset a/b/c/d/../../../../../../etc/passwd )
280
+ @yardoc.assets.should be_empty
281
+ @yardoc.run *%w( --asset /etc/passwd )
282
+ @yardoc.assets.should be_empty
283
+ @yardoc.run *%w( --asset normal:/etc/passwd )
284
+ @yardoc.assets.should be_empty
285
+ end
286
+
287
+ it "should allow from:to syntax" do
288
+ FileUtils.should_receive(:cp_r).with('foo', 'doc/bar')
289
+ @yardoc.run *%w( --asset foo:bar )
290
+ @yardoc.assets.should == {'foo' => 'bar'}
291
+ end
292
+
293
+ it "should not put from inside of to/ if from is a directory" do
294
+ begin
295
+ from = 'tmp_foo'
296
+ to = 'tmp_bar'
297
+ full_to = File.join(File.dirname(__FILE__), to)
298
+ FileUtils.mkdir_p(from)
299
+ @yardoc.options.serializer.basepath = File.dirname(__FILE__)
300
+ @yardoc.run("--asset", "#{from}:#{to}")
301
+ @yardoc.run("--asset", "#{from}:#{to}")
302
+ File.directory?(full_to).should be_true
303
+ File.directory?(File.join(full_to, 'tmp_foo')).should be_false
304
+ ensure
305
+ FileUtils.rm_rf(from)
306
+ FileUtils.rm_rf(full_to)
307
+ end
308
+ end
309
+ end
310
+
311
+ describe '--locale' do
312
+ it 'should apply specified locale to all extra file objects' do
313
+ File.stub!(:read).with('extra_file1').and_return('')
314
+ File.stub!(:read).with('extra_file2').and_return('')
315
+
316
+ extra_file_object1 = CodeObjects::ExtraFileObject.new('extra_file1')
317
+ extra_file_object2 = CodeObjects::ExtraFileObject.new('extra_file2')
318
+ extra_file_object1.should_receive(:locale=).with('fr')
319
+ extra_file_object2.should_receive(:locale=).with('fr')
320
+
321
+ CodeObjects::ExtraFileObject.stub!(:new).with('extra_file1').and_return(extra_file_object1)
322
+ CodeObjects::ExtraFileObject.stub!(:new).with('extra_file2').and_return(extra_file_object2)
323
+ Dir.stub!(:glob).with('README*').and_return([])
324
+ File.stub!(:file?).with('extra_file1').and_return(true)
325
+ File.stub!(:file?).with('extra_file2').and_return(true)
326
+ @yardoc.run('--locale=fr', '-', 'extra_file1', 'extra_file2')
327
+ end
328
+ end
329
+
330
+ describe '--po-dir' do
331
+ it 'should set Registry.po_dir' do
332
+ Registry.should_receive(:po_dir=).with("locale")
333
+ @yardoc.run('--po-dir=locale')
334
+ end
335
+ end
336
+ end
337
+
338
+ describe '--[no-]api' do
339
+ before { Registry.clear }
340
+
341
+ it "should allow --api name" do
342
+ YARD.parse_string <<-eof
343
+ # @api private
344
+ class Foo; end
345
+ # @api public
346
+ class Bar; end
347
+ class Baz; end
348
+ eof
349
+ @yardoc.run('--api', 'private')
350
+ @yardoc.options.verifier.run(Registry.all).should == [P('Foo')]
351
+ end
352
+
353
+ it "should allow multiple --api's to all be shown" do
354
+ YARD.parse_string <<-eof
355
+ # @api private
356
+ class Foo; end
357
+ # @api public
358
+ class Bar; end
359
+ class Baz; end
360
+ eof
361
+ @yardoc.run('--api', 'private', '--api', 'public')
362
+ @yardoc.options.verifier.run(Registry.all).
363
+ sort_by {|o| o.path }.should == [P('Bar'), P('Foo')]
364
+ end
365
+
366
+ it "should allow --no-api to specify objects with no @api tag" do
367
+ YARD.parse_string <<-eof
368
+ # @api private
369
+ class Foo; end
370
+ # @api public
371
+ class Bar; end
372
+ class Baz; end
373
+ eof
374
+ @yardoc.run('--api', '')
375
+ @yardoc.options.verifier.run(Registry.all).should == [P('Baz')]
376
+ @yardoc.options.verifier = Verifier.new
377
+ @yardoc.run('--no-api')
378
+ @yardoc.options.verifier.run(Registry.all).should == [P('Baz')]
379
+ end
380
+
381
+ it "should allow --no-api to work with other --api switches" do
382
+ YARD.parse_string <<-eof
383
+ # @api private
384
+ class Foo; end
385
+ # @api public
386
+ class Bar; end
387
+ class Baz; end
388
+ eof
389
+ @yardoc.run('--no-api', '--api', 'public')
390
+ @yardoc.options.verifier.run(Registry.all).
391
+ sort_by {|o| o.path }.should == [P('Bar'), P('Baz')]
392
+ end
393
+
394
+ it "should ensure Ruby code cannot be used" do
395
+ [':symbol', '42', '"; exit'].each do |ruby|
396
+ @yardoc.options.verifier.expressions = []
397
+ @yardoc.run('--api', ruby)
398
+ @yardoc.options.verifier.expressions[1].should include(ruby.inspect)
399
+ end
400
+ end
401
+ end
402
+
403
+ describe '--hide-api option' do
404
+ it "should allow --hide-api to hide objects with api tags" do
405
+ YARD.parse_string <<-eof
406
+ # @api private
407
+ class Foo; end
408
+ class Bar; end
409
+ class Baz; end
410
+ eof
411
+ @yardoc.run('--hide-api', 'private')
412
+ @yardoc.options.verifier.run(Registry.all).
413
+ sort_by {|o| o.path }.should == [P('Bar'), P('Baz')]
414
+ end
415
+
416
+ it "should allow --hide-api to work with --api" do
417
+ YARD.parse_string <<-eof
418
+ # @api private
419
+ class Foo; end
420
+ # @api public
421
+ class Bar; end
422
+ class Baz; end
423
+ eof
424
+ @yardoc.run('--api', 'public', '--hide-api', 'private')
425
+ @yardoc.options.verifier.run(Registry.all).
426
+ sort_by {|o| o.path }.should == [P('Bar')]
427
+ end
428
+ end
429
+
430
+ describe '--no-private option' do
431
+ it "should accept --no-private" do
432
+ obj = mock(:object)
433
+ obj.should_receive(:tag).ordered.with(:private).and_return(true)
434
+ @yardoc.parse_arguments *%w( --no-private )
435
+ @yardoc.options.verifier.call(obj).should == false
436
+ end
437
+
438
+ it "should hide object if namespace is @private with --no-private" do
439
+ ns = mock(:namespace)
440
+ ns.stub!(:type).and_return(:module)
441
+ ns.should_receive(:tag).with(:private).and_return(true)
442
+ obj = mock(:object)
443
+ obj.stub!(:namespace).and_return(ns)
444
+ obj.should_receive(:tag).with(:private).and_return(false)
445
+ @yardoc.parse_arguments *%w( --no-private )
446
+ @yardoc.options.verifier.call(obj).should == false
447
+ end
448
+
449
+ it "should not call #tag on namespace if namespace is proxy with --no-private" do
450
+ ns = mock(:namespace)
451
+ ns.should_receive(:is_a?).with(CodeObjects::Proxy).and_return(true)
452
+ ns.should_not_receive(:tag)
453
+ obj = mock(:object)
454
+ obj.stub!(:type).and_return(:class)
455
+ obj.stub!(:namespace).and_return(ns)
456
+ obj.stub!(:visibility).and_return(:public)
457
+ obj.should_receive(:tag).ordered.with(:private).and_return(false)
458
+ @yardoc.parse_arguments *%w( --no-private )
459
+ @yardoc.options.verifier.call(obj).should == true
460
+ end
461
+
462
+ # @bug gh-197
463
+ it "should not call #tag on namespace if namespace is proxy with --no-private" do
464
+ Registry.clear
465
+ YARD.parse_string "module Qux; class Foo::Bar; end; end"
466
+ foobar = Registry.at('Foo::Bar')
467
+ foobar.namespace.type = :module
468
+ @yardoc.parse_arguments *%w( --no-private )
469
+ @yardoc.options.verifier.call(foobar).should == true
470
+ end
471
+
472
+ it "should not call #tag on proxy object" do # @bug gh-197
473
+ @yardoc.parse_arguments *%w( --no-private )
474
+ @yardoc.options.verifier.call(P('ProxyClass')).should == true
475
+ end
476
+
477
+ it "should hide methods inside a 'private' class/module with --no-private" do
478
+ Registry.clear
479
+ YARD.parse_string <<-eof
480
+ # @private
481
+ class ABC
482
+ def foo; end
483
+ end
484
+ eof
485
+ @yardoc.parse_arguments *%w( --no-private )
486
+ @yardoc.options.verifier.call(Registry.at('ABC')).should be_false
487
+ @yardoc.options.verifier.call(Registry.at('ABC#foo')).should be_false
488
+ end
489
+ end
490
+
491
+ describe '.yardopts and .document handling' do
492
+ before do
493
+ @yardoc.use_yardopts_file = true
494
+ end
495
+
496
+ it "should search for and use yardopts file specified by #options_file" do
497
+ File.should_receive(:read_binary).with("test").and_return("-o \n\nMYPATH\nFILE1 FILE2")
498
+ @yardoc.use_document_file = false
499
+ @yardoc.options_file = "test"
500
+ @yardoc.run
501
+ @yardoc.options.serializer.options[:basepath].should == "MYPATH"
502
+ @yardoc.files.should == ["FILE1", "FILE2"]
503
+ end
504
+
505
+ it "should use String#shell_split to split .yardopts tokens" do
506
+ optsdata = "foo bar"
507
+ optsdata.should_receive(:shell_split)
508
+ File.should_receive(:read_binary).with("test").and_return(optsdata)
509
+ @yardoc.options_file = "test"
510
+ @yardoc.run
511
+ end
512
+
513
+ it "should allow opts specified in command line to override yardopts file" do
514
+ File.should_receive(:read_binary).with(".yardopts").and_return("-o NOTMYPATH")
515
+ @yardoc.run("-o", "MYPATH", "FILE")
516
+ @yardoc.options.serializer.options[:basepath].should == "MYPATH"
517
+ @yardoc.files.should == ["FILE"]
518
+ end
519
+
520
+ it "should load the RDoc .document file if found" do
521
+ File.should_receive(:read_binary).with(".yardopts").and_return("-o NOTMYPATH")
522
+ @yardoc.use_document_file = true
523
+ @yardoc.stub!(:support_rdoc_document_file!).and_return(["FILE2", "FILE3"])
524
+ @yardoc.run("-o", "MYPATH", "FILE1")
525
+ @yardoc.options.serializer.options[:basepath].should == "MYPATH"
526
+ @yardoc.files.should == ["FILE2", "FILE3", "FILE1"]
527
+ end
528
+ end
529
+
530
+ describe 'Query options' do
531
+ after { Registry.clear }
532
+
533
+ it "should hide private constants in with default visibilities" do
534
+ classobj = CodeObjects::ClassObject.new(:root, :Foo) {|o| o.visibility = :private }
535
+ @yardoc.run
536
+ @yardoc.options.verifier.run([classobj]).should == []
537
+ end
538
+
539
+ it "should setup visibility rules as verifier" do
540
+ methobj = CodeObjects::MethodObject.new(:root, :test) {|o| o.visibility = :private }
541
+ File.should_receive(:read_binary).with("test").and_return("--private")
542
+ @yardoc.use_yardopts_file = true
543
+ @yardoc.options_file = "test"
544
+ @yardoc.run
545
+ @yardoc.options.verifier.call(methobj).should be_true
546
+ end
547
+
548
+ it "should accept a --query" do
549
+ @yardoc.parse_arguments *%w( --query @return )
550
+ @yardoc.options.verifier.should be_a(Verifier)
551
+ end
552
+
553
+ it "should accept multiple --query arguments" do
554
+ obj = mock(:object)
555
+ obj.should_receive(:tag).ordered.with('return').and_return(true)
556
+ obj.should_receive(:tag).ordered.with('tag').and_return(false)
557
+ @yardoc.parse_arguments *%w( --query @return --query @tag )
558
+ @yardoc.options.verifier.should be_a(Verifier)
559
+ @yardoc.options.verifier.call(obj).should == false
560
+ end
561
+ end
562
+
563
+ describe 'Extra file arguments' do
564
+ it "should accept extra files if specified after '-' with source files" do
565
+ Dir.should_receive(:glob).with('README*').and_return([])
566
+ File.should_receive(:file?).with('extra_file1').and_return(true)
567
+ File.should_receive(:file?).with('extra_file2').and_return(true)
568
+ File.should_receive(:read).with('extra_file1').and_return('')
569
+ File.should_receive(:read).with('extra_file2').and_return('')
570
+ @yardoc.parse_arguments *%w( file1 file2 - extra_file1 extra_file2 )
571
+ @yardoc.files.should == %w( file1 file2 )
572
+ @yardoc.options.files.should ==
573
+ [CodeObjects::ExtraFileObject.new('extra_file1', ''),
574
+ CodeObjects::ExtraFileObject.new('extra_file2', '')]
575
+ end
576
+
577
+ it "should accept files section only containing extra files" do
578
+ Dir.should_receive(:glob).with('README*').and_return([])
579
+ @yardoc.parse_arguments *%w( - LICENSE )
580
+ @yardoc.files.should == %w( {lib,app}/**/*.rb ext/**/*.c )
581
+ @yardoc.options.files.should == [CodeObjects::ExtraFileObject.new('LICENSE', '')]
582
+ end
583
+
584
+ it "should accept globs as extra files" do
585
+ Dir.should_receive(:glob).with('README*').and_return []
586
+ Dir.should_receive(:glob).with('*.txt').and_return ['a.txt', 'b.txt']
587
+ File.should_receive(:read).with('a.txt').and_return('')
588
+ File.should_receive(:read).with('b.txt').and_return('')
589
+ File.should_receive(:file?).with('a.txt').and_return(true)
590
+ File.should_receive(:file?).with('b.txt').and_return(true)
591
+ @yardoc.parse_arguments *%w( file1 file2 - *.txt )
592
+ @yardoc.files.should == %w( file1 file2 )
593
+ @yardoc.options.files.should ==
594
+ [CodeObjects::ExtraFileObject.new('a.txt', ''),
595
+ CodeObjects::ExtraFileObject.new('b.txt', '')]
596
+ end
597
+
598
+ it "should warn if extra file is not found" do
599
+ log.should_receive(:warn).with(/Could not find extra file: UNKNOWN/)
600
+ @yardoc.parse_arguments *%w( - UNKNOWN )
601
+ end
602
+
603
+ it "should warn if readme file is not found" do
604
+ log.should_receive(:warn).with(/Could not find readme file: UNKNOWN/)
605
+ @yardoc.parse_arguments *%w( -r UNKNOWN )
606
+ end
607
+
608
+ it "should use first file as readme if no readme is specified when using --one-file" do
609
+ Dir.should_receive(:glob).with('README*').and_return []
610
+ Dir.should_receive(:glob).with('lib/*.rb').and_return(['lib/foo.rb'])
611
+ File.should_receive(:read).with('lib/foo.rb').and_return('')
612
+ @yardoc.parse_arguments *%w( --one-file lib/*.rb )
613
+ @yardoc.options.readme.should == CodeObjects::ExtraFileObject.new('lib/foo.rb', '')
614
+ end
615
+
616
+ it "should use readme it exists when using --one-file" do
617
+ Dir.should_receive(:glob).with('README*').and_return ['README']
618
+ File.should_receive(:read).with('README').and_return('')
619
+ @yardoc.parse_arguments *%w( --one-file lib/*.rb )
620
+ @yardoc.options.readme.should == CodeObjects::ExtraFileObject.new('README', '')
621
+ end
622
+
623
+ it "should not allow US-ASCII charset when using --one-file" do
624
+ ienc = Encoding.default_internal
625
+ eenc = Encoding.default_external
626
+ log.should_receive(:warn).with(/not compatible with US-ASCII.*using ASCII-8BIT/)
627
+ @yardoc.parse_arguments *%w( --one-file --charset us-ascii )
628
+ Encoding.default_internal.name.should == 'ASCII-8BIT'
629
+ Encoding.default_external.name.should == 'ASCII-8BIT'
630
+ Encoding.default_internal = ienc
631
+ Encoding.default_external = eenc
632
+ end if defined?(::Encoding)
633
+ end
634
+
635
+ describe 'Source file arguments' do
636
+ it "should accept no params and parse {lib,app}/**/*.rb ext/**/*.c" do
637
+ @yardoc.parse_arguments
638
+ @yardoc.files.should == %w( {lib,app}/**/*.rb ext/**/*.c )
639
+ end
640
+ end
641
+
642
+ describe 'Tags options' do
643
+ def tag_created(switch, factory_method)
644
+ visible_tags = mock(:visible_tags)
645
+ visible_tags.should_receive(:|).ordered.with([:foo])
646
+ visible_tags.should_receive(:-).ordered.with([]).and_return(visible_tags)
647
+ Tags::Library.should_receive(:define_tag).with('Foo', :foo, factory_method)
648
+ Tags::Library.stub!(:visible_tags=)
649
+ Tags::Library.should_receive(:visible_tags).at_least(1).times.and_return(visible_tags)
650
+ @yardoc.parse_arguments("--#{switch}-tag", 'foo')
651
+ end
652
+
653
+ def tag_hidden(tag)
654
+ visible_tags = mock(:visible_tags)
655
+ visible_tags.should_receive(:|).ordered.with([tag])
656
+ visible_tags.should_receive(:-).ordered.with([tag]).and_return([])
657
+ Tags::Library.should_receive(:define_tag).with(tag.to_s.capitalize, tag, nil)
658
+ Tags::Library.stub!(:visible_tags=)
659
+ Tags::Library.should_receive(:visible_tags).at_least(1).times.and_return(visible_tags)
660
+ end
661
+
662
+ it "should accept --tag" do
663
+ Tags::Library.should_receive(:define_tag).with('Title of Foo', :foo, nil)
664
+ @yardoc.parse_arguments('--tag', 'foo:Title of Foo')
665
+ end
666
+
667
+ it "should accept --tag without title (and default to captialized tag name)" do
668
+ Tags::Library.should_receive(:define_tag).with('Foo', :foo, nil)
669
+ @yardoc.parse_arguments('--tag', 'foo')
670
+ end
671
+
672
+ it "should only list tag once if declared twice" do
673
+ visible_tags = []
674
+ Tags::Library.stub!(:define_tag)
675
+ Tags::Library.stub!(:visible_tags).and_return([:foo])
676
+ Tags::Library.stub!(:visible_tags=) {|value| visible_tags = value }
677
+ @yardoc.parse_arguments('--tag', 'foo', '--tag', 'foo')
678
+ visible_tags.should == [:foo]
679
+ end
680
+
681
+ it "should accept --type-tag" do
682
+ tag_created 'type', :with_types
683
+ end
684
+
685
+ it "should accept --type-name-tag" do
686
+ tag_created 'type-name', :with_types_and_name
687
+ end
688
+
689
+ it "should accept --name-tag" do
690
+ tag_created 'name', :with_name
691
+ end
692
+
693
+ it "should accept --title-tag" do
694
+ tag_created 'title', :with_title_and_text
695
+ end
696
+
697
+ it "should accept --hide-tag before tag is listed" do
698
+ tag_hidden(:anewfoo)
699
+ @yardoc.parse_arguments('--hide-tag', 'anewfoo', '--tag', 'anewfoo')
700
+ end
701
+
702
+ it "should accept --hide-tag after tag is listed" do
703
+ tag_hidden(:anewfoo2)
704
+ @yardoc.parse_arguments('--tag', 'anewfoo2', '--hide-tag', 'anewfoo2')
705
+ end
706
+
707
+ it "should accept --transitive-tag" do
708
+ @yardoc.parse_arguments('--transitive-tag', 'foo')
709
+ Tags::Library.transitive_tags.should include(:foo)
710
+ end
711
+
712
+ it "should accept --non-transitive-tag" do
713
+ Tags::Library.transitive_tags |= [:foo]
714
+ @yardoc.parse_arguments('--non-transitive-tag', 'foo')
715
+ Tags::Library.transitive_tags.should_not include(:foo)
716
+ end
717
+ end
718
+
719
+ describe 'Safe mode' do
720
+ before do
721
+ YARD::Config.stub!(:options).and_return(:safe_mode => true)
722
+ end
723
+
724
+ it "should not allow --load or -e in safe mode" do
725
+ @yardoc.should_not_receive(:require)
726
+ @yardoc.run('--load', 'foo')
727
+ @yardoc.run('-e', 'foo')
728
+ end
729
+
730
+ it "should not allow --query in safe mode" do
731
+ @yardoc.run('--query', 'foo')
732
+ @yardoc.options.verifier.expressions.should_not include("foo")
733
+ end
734
+
735
+ it "should not allow modifying the template paths" do
736
+ YARD::Templates::Engine.should_not_receive(:register_template_path)
737
+ @yardoc.run('-p', 'foo')
738
+ @yardoc.run('--template-path', 'foo')
739
+ end
740
+ end
741
+
742
+ describe 'Markup Loading' do
743
+ it "should load rdoc markup if no markup is provided" do
744
+ @yardoc.generate = true
745
+ @yardoc.run
746
+ @yardoc.options.markup.should == :rdoc
747
+ end
748
+
749
+ it "should load rdoc markup even when no output is specified" do
750
+ @yardoc.parse_arguments('--no-output')
751
+ @yardoc.options.markup.should == :rdoc
752
+ end
753
+
754
+ it "should warn if rdoc cannot be loaded and fallback to :none" do
755
+ mod = YARD::Templates::Helpers::MarkupHelper
756
+ mod.clear_markup_cache
757
+ mod.const_get(:MARKUP_PROVIDERS).should_receive(:[]).with(:rdoc).and_return([{:lib => 'INVALID'}])
758
+ log.should_receive(:warn).with(/Could not load default RDoc formatter/)
759
+ @yardoc.stub(:generate) { @yardoc.options.files = []; true }
760
+ @yardoc.run
761
+ @yardoc.options.markup.should == :none
762
+ mod.clear_markup_cache
763
+ end
764
+
765
+ it "should error immediately if markup for any files are missing" do
766
+ mod = YARD::Templates::Helpers::MarkupHelper
767
+ mod.clear_markup_cache
768
+ mod.const_get(:MARKUP_PROVIDERS).should_receive(:[]).with(:markdown).and_return([{:lib => 'INVALID'}])
769
+ log.should_receive(:error).with(/Missing 'INVALID' gem for Markdown formatting/)
770
+ files = [CodeObjects::ExtraFileObject.new('test.md', '')]
771
+ @yardoc.stub(:generate) { @yardoc.options.files = files; true }
772
+ @yardoc.run
773
+ mod.clear_markup_cache
774
+ end
775
+
776
+ it "should error immediately if markup for any files are missing (file markup specified in attributes)" do
777
+ mod = YARD::Templates::Helpers::MarkupHelper
778
+ mod.clear_markup_cache
779
+ mod.const_get(:MARKUP_PROVIDERS).should_receive(:[]).with(:markdown).and_return([{:lib => 'INVALID'}])
780
+ log.should_receive(:error).with(/Missing 'INVALID' gem for Markdown formatting/)
781
+ files = [CodeObjects::ExtraFileObject.new('test', '# @markup markdown')]
782
+ @yardoc.stub(:generate) { @yardoc.options.files = files; true }
783
+ @yardoc.run
784
+ mod.clear_markup_cache
785
+ end
786
+ end
787
+
788
+ describe '#run' do
789
+ it "should parse_arguments if run() is called" do
790
+ @yardoc.should_receive(:parse_arguments)
791
+ @yardoc.run
792
+ end
793
+
794
+ it "should parse_arguments if run(arg1, arg2, ...) is called" do
795
+ @yardoc.should_receive(:parse_arguments)
796
+ @yardoc.run('--private', '-p', 'foo')
797
+ end
798
+
799
+ it "should not parse_arguments if run(nil) is called" do
800
+ @yardoc.should_not_receive(:parse_arguments)
801
+ @yardoc.run(nil)
802
+ end
803
+ end
804
+ end