nutshell-crm 0.0.1 → 0.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (491) hide show
  1. data/Rakefile +4 -1
  2. data/lib/nutshell-crm.rb +274 -6
  3. data/lib/nutshell-crm/version.rb +1 -1
  4. data/nutshell-crm.gemspec +1 -0
  5. data/spec/nutshell-crm_spec.rb +40 -167
  6. data/vendor/bundle/bin/yard +19 -0
  7. data/vendor/bundle/bin/yardoc +19 -0
  8. data/vendor/bundle/bin/yri +19 -0
  9. data/vendor/bundle/gems/yard-0.7.4/.yardopts +18 -0
  10. data/vendor/bundle/gems/yard-0.7.4/ChangeLog +10533 -0
  11. data/vendor/bundle/gems/yard-0.7.4/LEGAL +74 -0
  12. data/vendor/bundle/gems/yard-0.7.4/LICENSE +22 -0
  13. data/vendor/bundle/gems/yard-0.7.4/README.md +514 -0
  14. data/vendor/bundle/gems/yard-0.7.4/Rakefile +99 -0
  15. data/vendor/bundle/gems/yard-0.7.4/benchmarks/builtins_vs_eval.rb +23 -0
  16. data/vendor/bundle/gems/yard-0.7.4/benchmarks/concat_vs_join.rb +12 -0
  17. data/vendor/bundle/gems/yard-0.7.4/benchmarks/erb_vs_erubis.rb +53 -0
  18. data/vendor/bundle/gems/yard-0.7.4/benchmarks/format_args.rb +46 -0
  19. data/vendor/bundle/gems/yard-0.7.4/benchmarks/generation.rb +37 -0
  20. data/vendor/bundle/gems/yard-0.7.4/benchmarks/marshal_vs_dbm.rb +63 -0
  21. data/vendor/bundle/gems/yard-0.7.4/benchmarks/parsing.rb +46 -0
  22. data/vendor/bundle/gems/yard-0.7.4/benchmarks/pathname_vs_string.rb +50 -0
  23. data/vendor/bundle/gems/yard-0.7.4/benchmarks/rdoc_vs_yardoc.rb +10 -0
  24. data/vendor/bundle/gems/yard-0.7.4/benchmarks/ri_vs_yri.rb +18 -0
  25. data/vendor/bundle/gems/yard-0.7.4/benchmarks/ripper_parser.rb +12 -0
  26. data/vendor/bundle/gems/yard-0.7.4/benchmarks/splat_vs_flatten.rb +12 -0
  27. data/vendor/bundle/gems/yard-0.7.4/benchmarks/template_erb.rb +22 -0
  28. data/vendor/bundle/gems/yard-0.7.4/benchmarks/template_format.rb +6 -0
  29. data/vendor/bundle/gems/yard-0.7.4/benchmarks/template_profile.rb +17 -0
  30. data/vendor/bundle/gems/yard-0.7.4/benchmarks/yri_cache.rb +19 -0
  31. data/vendor/bundle/gems/yard-0.7.4/bin/yard +4 -0
  32. data/vendor/bundle/gems/yard-0.7.4/bin/yard-graph +4 -0
  33. data/vendor/bundle/gems/yard-0.7.4/bin/yard-server +4 -0
  34. data/vendor/bundle/gems/yard-0.7.4/bin/yardoc +4 -0
  35. data/vendor/bundle/gems/yard-0.7.4/bin/yri +4 -0
  36. data/vendor/bundle/gems/yard-0.7.4/docs/CodeObjects.md +115 -0
  37. data/vendor/bundle/gems/yard-0.7.4/docs/GettingStarted.md +590 -0
  38. data/vendor/bundle/gems/yard-0.7.4/docs/Glossary.md +12 -0
  39. data/vendor/bundle/gems/yard-0.7.4/docs/Handlers.md +152 -0
  40. data/vendor/bundle/gems/yard-0.7.4/docs/Overview.md +61 -0
  41. data/vendor/bundle/gems/yard-0.7.4/docs/Parser.md +191 -0
  42. data/vendor/bundle/gems/yard-0.7.4/docs/Tags.md +586 -0
  43. data/vendor/bundle/gems/yard-0.7.4/docs/Templates.md +518 -0
  44. data/vendor/bundle/gems/yard-0.7.4/docs/WhatsNew.md +887 -0
  45. data/vendor/bundle/gems/yard-0.7.4/docs/images/code-objects-class-diagram.png +0 -0
  46. data/vendor/bundle/gems/yard-0.7.4/docs/images/handlers-class-diagram.png +0 -0
  47. data/vendor/bundle/gems/yard-0.7.4/docs/images/overview-class-diagram.png +0 -0
  48. data/vendor/bundle/gems/yard-0.7.4/docs/images/parser-class-diagram.png +0 -0
  49. data/vendor/bundle/gems/yard-0.7.4/docs/images/tags-class-diagram.png +0 -0
  50. data/vendor/bundle/gems/yard-0.7.4/lib/rubygems_plugin.rb +4 -0
  51. data/vendor/bundle/gems/yard-0.7.4/lib/yard.rb +57 -0
  52. data/vendor/bundle/gems/yard-0.7.4/lib/yard/autoload.rb +233 -0
  53. data/vendor/bundle/gems/yard-0.7.4/lib/yard/cli/command.rb +73 -0
  54. data/vendor/bundle/gems/yard-0.7.4/lib/yard/cli/command_parser.rb +89 -0
  55. data/vendor/bundle/gems/yard-0.7.4/lib/yard/cli/config.rb +136 -0
  56. data/vendor/bundle/gems/yard-0.7.4/lib/yard/cli/diff.rb +201 -0
  57. data/vendor/bundle/gems/yard-0.7.4/lib/yard/cli/gems.rb +83 -0
  58. data/vendor/bundle/gems/yard-0.7.4/lib/yard/cli/graph.rb +103 -0
  59. data/vendor/bundle/gems/yard-0.7.4/lib/yard/cli/help.rb +18 -0
  60. data/vendor/bundle/gems/yard-0.7.4/lib/yard/cli/list.rb +22 -0
  61. data/vendor/bundle/gems/yard-0.7.4/lib/yard/cli/server.rb +160 -0
  62. data/vendor/bundle/gems/yard-0.7.4/lib/yard/cli/stats.rb +210 -0
  63. data/vendor/bundle/gems/yard-0.7.4/lib/yard/cli/yardoc.rb +696 -0
  64. data/vendor/bundle/gems/yard-0.7.4/lib/yard/cli/yri.rb +193 -0
  65. data/vendor/bundle/gems/yard-0.7.4/lib/yard/code_objects/base.rb +513 -0
  66. data/vendor/bundle/gems/yard-0.7.4/lib/yard/code_objects/class_object.rb +143 -0
  67. data/vendor/bundle/gems/yard-0.7.4/lib/yard/code_objects/class_variable_object.rb +8 -0
  68. data/vendor/bundle/gems/yard-0.7.4/lib/yard/code_objects/constant_object.rb +13 -0
  69. data/vendor/bundle/gems/yard-0.7.4/lib/yard/code_objects/extended_method_object.rb +23 -0
  70. data/vendor/bundle/gems/yard-0.7.4/lib/yard/code_objects/extra_file_object.rb +89 -0
  71. data/vendor/bundle/gems/yard-0.7.4/lib/yard/code_objects/macro_object.rb +215 -0
  72. data/vendor/bundle/gems/yard-0.7.4/lib/yard/code_objects/method_object.rb +153 -0
  73. data/vendor/bundle/gems/yard-0.7.4/lib/yard/code_objects/module_object.rb +18 -0
  74. data/vendor/bundle/gems/yard-0.7.4/lib/yard/code_objects/namespace_object.rb +200 -0
  75. data/vendor/bundle/gems/yard-0.7.4/lib/yard/code_objects/proxy.rb +252 -0
  76. data/vendor/bundle/gems/yard-0.7.4/lib/yard/code_objects/root_object.rb +16 -0
  77. data/vendor/bundle/gems/yard-0.7.4/lib/yard/config.rb +259 -0
  78. data/vendor/bundle/gems/yard-0.7.4/lib/yard/core_ext/array.rb +15 -0
  79. data/vendor/bundle/gems/yard-0.7.4/lib/yard/core_ext/file.rb +65 -0
  80. data/vendor/bundle/gems/yard-0.7.4/lib/yard/core_ext/hash.rb +15 -0
  81. data/vendor/bundle/gems/yard-0.7.4/lib/yard/core_ext/insertion.rb +60 -0
  82. data/vendor/bundle/gems/yard-0.7.4/lib/yard/core_ext/module.rb +19 -0
  83. data/vendor/bundle/gems/yard-0.7.4/lib/yard/core_ext/string.rb +67 -0
  84. data/vendor/bundle/gems/yard-0.7.4/lib/yard/core_ext/symbol_hash.rb +73 -0
  85. data/vendor/bundle/gems/yard-0.7.4/lib/yard/docstring.rb +331 -0
  86. data/vendor/bundle/gems/yard-0.7.4/lib/yard/globals.rb +18 -0
  87. data/vendor/bundle/gems/yard-0.7.4/lib/yard/handlers/base.rb +569 -0
  88. data/vendor/bundle/gems/yard-0.7.4/lib/yard/handlers/processor.rb +187 -0
  89. data/vendor/bundle/gems/yard-0.7.4/lib/yard/handlers/ruby/alias_handler.rb +43 -0
  90. data/vendor/bundle/gems/yard-0.7.4/lib/yard/handlers/ruby/attribute_handler.rb +83 -0
  91. data/vendor/bundle/gems/yard-0.7.4/lib/yard/handlers/ruby/base.rb +160 -0
  92. data/vendor/bundle/gems/yard-0.7.4/lib/yard/handlers/ruby/class_condition_handler.rb +84 -0
  93. data/vendor/bundle/gems/yard-0.7.4/lib/yard/handlers/ruby/class_handler.rb +122 -0
  94. data/vendor/bundle/gems/yard-0.7.4/lib/yard/handlers/ruby/class_variable_handler.rb +16 -0
  95. data/vendor/bundle/gems/yard-0.7.4/lib/yard/handlers/ruby/constant_handler.rb +45 -0
  96. data/vendor/bundle/gems/yard-0.7.4/lib/yard/handlers/ruby/exception_handler.rb +26 -0
  97. data/vendor/bundle/gems/yard-0.7.4/lib/yard/handlers/ruby/extend_handler.rb +21 -0
  98. data/vendor/bundle/gems/yard-0.7.4/lib/yard/handlers/ruby/legacy/alias_handler.rb +37 -0
  99. data/vendor/bundle/gems/yard-0.7.4/lib/yard/handlers/ruby/legacy/attribute_handler.rb +61 -0
  100. data/vendor/bundle/gems/yard-0.7.4/lib/yard/handlers/ruby/legacy/base.rb +228 -0
  101. data/vendor/bundle/gems/yard-0.7.4/lib/yard/handlers/ruby/legacy/class_condition_handler.rb +81 -0
  102. data/vendor/bundle/gems/yard-0.7.4/lib/yard/handlers/ruby/legacy/class_handler.rb +110 -0
  103. data/vendor/bundle/gems/yard-0.7.4/lib/yard/handlers/ruby/legacy/class_variable_handler.rb +14 -0
  104. data/vendor/bundle/gems/yard-0.7.4/lib/yard/handlers/ruby/legacy/constant_handler.rb +28 -0
  105. data/vendor/bundle/gems/yard-0.7.4/lib/yard/handlers/ruby/legacy/exception_handler.rb +12 -0
  106. data/vendor/bundle/gems/yard-0.7.4/lib/yard/handlers/ruby/legacy/extend_handler.rb +20 -0
  107. data/vendor/bundle/gems/yard-0.7.4/lib/yard/handlers/ruby/legacy/macro_handler.rb +39 -0
  108. data/vendor/bundle/gems/yard-0.7.4/lib/yard/handlers/ruby/legacy/method_handler.rb +78 -0
  109. data/vendor/bundle/gems/yard-0.7.4/lib/yard/handlers/ruby/legacy/mixin_handler.rb +41 -0
  110. data/vendor/bundle/gems/yard-0.7.4/lib/yard/handlers/ruby/legacy/module_handler.rb +11 -0
  111. data/vendor/bundle/gems/yard-0.7.4/lib/yard/handlers/ruby/legacy/private_constant_handler.rb +21 -0
  112. data/vendor/bundle/gems/yard-0.7.4/lib/yard/handlers/ruby/legacy/visibility_handler.rb +16 -0
  113. data/vendor/bundle/gems/yard-0.7.4/lib/yard/handlers/ruby/legacy/yield_handler.rb +28 -0
  114. data/vendor/bundle/gems/yard-0.7.4/lib/yard/handlers/ruby/macro_handler.rb +40 -0
  115. data/vendor/bundle/gems/yard-0.7.4/lib/yard/handlers/ruby/macro_handler_methods.rb +130 -0
  116. data/vendor/bundle/gems/yard-0.7.4/lib/yard/handlers/ruby/method_condition_handler.rb +8 -0
  117. data/vendor/bundle/gems/yard-0.7.4/lib/yard/handlers/ruby/method_handler.rb +94 -0
  118. data/vendor/bundle/gems/yard-0.7.4/lib/yard/handlers/ruby/mixin_handler.rb +36 -0
  119. data/vendor/bundle/gems/yard-0.7.4/lib/yard/handlers/ruby/module_handler.rb +11 -0
  120. data/vendor/bundle/gems/yard-0.7.4/lib/yard/handlers/ruby/private_constant_handler.rb +36 -0
  121. data/vendor/bundle/gems/yard-0.7.4/lib/yard/handlers/ruby/struct_handler_methods.rb +140 -0
  122. data/vendor/bundle/gems/yard-0.7.4/lib/yard/handlers/ruby/visibility_handler.rb +24 -0
  123. data/vendor/bundle/gems/yard-0.7.4/lib/yard/handlers/ruby/yield_handler.rb +30 -0
  124. data/vendor/bundle/gems/yard-0.7.4/lib/yard/logging.rb +77 -0
  125. data/vendor/bundle/gems/yard-0.7.4/lib/yard/parser/base.rb +56 -0
  126. data/vendor/bundle/gems/yard-0.7.4/lib/yard/parser/c_parser.rb +501 -0
  127. data/vendor/bundle/gems/yard-0.7.4/lib/yard/parser/ruby/ast_node.rb +399 -0
  128. data/vendor/bundle/gems/yard-0.7.4/lib/yard/parser/ruby/legacy/ruby_lex.rb +1376 -0
  129. data/vendor/bundle/gems/yard-0.7.4/lib/yard/parser/ruby/legacy/ruby_parser.rb +30 -0
  130. data/vendor/bundle/gems/yard-0.7.4/lib/yard/parser/ruby/legacy/statement.rb +60 -0
  131. data/vendor/bundle/gems/yard-0.7.4/lib/yard/parser/ruby/legacy/statement_list.rb +390 -0
  132. data/vendor/bundle/gems/yard-0.7.4/lib/yard/parser/ruby/legacy/token_list.rb +66 -0
  133. data/vendor/bundle/gems/yard-0.7.4/lib/yard/parser/ruby/ruby_parser.rb +542 -0
  134. data/vendor/bundle/gems/yard-0.7.4/lib/yard/parser/source_parser.rb +517 -0
  135. data/vendor/bundle/gems/yard-0.7.4/lib/yard/rake/yardoc_task.rb +75 -0
  136. data/vendor/bundle/gems/yard-0.7.4/lib/yard/registry.rb +400 -0
  137. data/vendor/bundle/gems/yard-0.7.4/lib/yard/registry_store.rb +252 -0
  138. data/vendor/bundle/gems/yard-0.7.4/lib/yard/rubygems/backports.rb +8 -0
  139. data/vendor/bundle/gems/yard-0.7.4/lib/yard/rubygems/backports/LICENSE.txt +57 -0
  140. data/vendor/bundle/gems/yard-0.7.4/lib/yard/rubygems/backports/MIT.txt +20 -0
  141. data/vendor/bundle/gems/yard-0.7.4/lib/yard/rubygems/backports/gem.rb +8 -0
  142. data/vendor/bundle/gems/yard-0.7.4/lib/yard/rubygems/backports/source_index.rb +353 -0
  143. data/vendor/bundle/gems/yard-0.7.4/lib/yard/rubygems/doc_manager.rb +75 -0
  144. data/vendor/bundle/gems/yard-0.7.4/lib/yard/rubygems/specification.rb +41 -0
  145. data/vendor/bundle/gems/yard-0.7.4/lib/yard/serializers/base.rb +80 -0
  146. data/vendor/bundle/gems/yard-0.7.4/lib/yard/serializers/file_system_serializer.rb +92 -0
  147. data/vendor/bundle/gems/yard-0.7.4/lib/yard/serializers/process_serializer.rb +24 -0
  148. data/vendor/bundle/gems/yard-0.7.4/lib/yard/serializers/stdout_serializer.rb +32 -0
  149. data/vendor/bundle/gems/yard-0.7.4/lib/yard/serializers/yardoc_serializer.rb +122 -0
  150. data/vendor/bundle/gems/yard-0.7.4/lib/yard/server.rb +11 -0
  151. data/vendor/bundle/gems/yard-0.7.4/lib/yard/server/adapter.rb +100 -0
  152. data/vendor/bundle/gems/yard-0.7.4/lib/yard/server/commands/base.rb +192 -0
  153. data/vendor/bundle/gems/yard-0.7.4/lib/yard/server/commands/display_file_command.rb +24 -0
  154. data/vendor/bundle/gems/yard-0.7.4/lib/yard/server/commands/display_object_command.rb +51 -0
  155. data/vendor/bundle/gems/yard-0.7.4/lib/yard/server/commands/frames_command.rb +32 -0
  156. data/vendor/bundle/gems/yard-0.7.4/lib/yard/server/commands/library_command.rb +100 -0
  157. data/vendor/bundle/gems/yard-0.7.4/lib/yard/server/commands/library_index_command.rb +24 -0
  158. data/vendor/bundle/gems/yard-0.7.4/lib/yard/server/commands/list_command.rb +48 -0
  159. data/vendor/bundle/gems/yard-0.7.4/lib/yard/server/commands/search_command.rb +72 -0
  160. data/vendor/bundle/gems/yard-0.7.4/lib/yard/server/commands/static_file_command.rb +50 -0
  161. data/vendor/bundle/gems/yard-0.7.4/lib/yard/server/doc_server_helper.rb +40 -0
  162. data/vendor/bundle/gems/yard-0.7.4/lib/yard/server/doc_server_serializer.rb +31 -0
  163. data/vendor/bundle/gems/yard-0.7.4/lib/yard/server/library_version.rb +227 -0
  164. data/vendor/bundle/gems/yard-0.7.4/lib/yard/server/rack_adapter.rb +83 -0
  165. data/vendor/bundle/gems/yard-0.7.4/lib/yard/server/router.rb +180 -0
  166. data/vendor/bundle/gems/yard-0.7.4/lib/yard/server/static_caching.rb +45 -0
  167. data/vendor/bundle/gems/yard-0.7.4/lib/yard/server/templates/default/fulldoc/html/css/custom.css +78 -0
  168. data/vendor/bundle/gems/yard-0.7.4/lib/yard/server/templates/default/fulldoc/html/images/processing.gif +0 -0
  169. data/vendor/bundle/gems/yard-0.7.4/lib/yard/server/templates/default/fulldoc/html/js/autocomplete.js +12 -0
  170. data/vendor/bundle/gems/yard-0.7.4/lib/yard/server/templates/default/fulldoc/html/js/live.js +32 -0
  171. data/vendor/bundle/gems/yard-0.7.4/lib/yard/server/templates/default/layout/html/breadcrumb.erb +46 -0
  172. data/vendor/bundle/gems/yard-0.7.4/lib/yard/server/templates/default/layout/html/headers.erb +16 -0
  173. data/vendor/bundle/gems/yard-0.7.4/lib/yard/server/templates/default/layout/html/setup.rb +7 -0
  174. data/vendor/bundle/gems/yard-0.7.4/lib/yard/server/templates/doc_server/frames/html/frames.erb +13 -0
  175. data/vendor/bundle/gems/yard-0.7.4/lib/yard/server/templates/doc_server/frames/html/setup.rb +3 -0
  176. data/vendor/bundle/gems/yard-0.7.4/lib/yard/server/templates/doc_server/full_list/html/full_list.erb +34 -0
  177. data/vendor/bundle/gems/yard-0.7.4/lib/yard/server/templates/doc_server/full_list/html/setup.rb +20 -0
  178. data/vendor/bundle/gems/yard-0.7.4/lib/yard/server/templates/doc_server/library_list/html/contents.erb +13 -0
  179. data/vendor/bundle/gems/yard-0.7.4/lib/yard/server/templates/doc_server/library_list/html/headers.erb +26 -0
  180. data/vendor/bundle/gems/yard-0.7.4/lib/yard/server/templates/doc_server/library_list/html/library_list.erb +12 -0
  181. data/vendor/bundle/gems/yard-0.7.4/lib/yard/server/templates/doc_server/library_list/html/setup.rb +3 -0
  182. data/vendor/bundle/gems/yard-0.7.4/lib/yard/server/templates/doc_server/library_list/html/title.erb +2 -0
  183. data/vendor/bundle/gems/yard-0.7.4/lib/yard/server/templates/doc_server/processing/html/processing.erb +51 -0
  184. data/vendor/bundle/gems/yard-0.7.4/lib/yard/server/templates/doc_server/processing/html/setup.rb +3 -0
  185. data/vendor/bundle/gems/yard-0.7.4/lib/yard/server/templates/doc_server/search/html/search.erb +19 -0
  186. data/vendor/bundle/gems/yard-0.7.4/lib/yard/server/templates/doc_server/search/html/setup.rb +8 -0
  187. data/vendor/bundle/gems/yard-0.7.4/lib/yard/server/webrick_adapter.rb +42 -0
  188. data/vendor/bundle/gems/yard-0.7.4/lib/yard/tags/default_factory.rb +141 -0
  189. data/vendor/bundle/gems/yard-0.7.4/lib/yard/tags/default_tag.rb +12 -0
  190. data/vendor/bundle/gems/yard-0.7.4/lib/yard/tags/library.rb +201 -0
  191. data/vendor/bundle/gems/yard-0.7.4/lib/yard/tags/option_tag.rb +12 -0
  192. data/vendor/bundle/gems/yard-0.7.4/lib/yard/tags/overload_tag.rb +65 -0
  193. data/vendor/bundle/gems/yard-0.7.4/lib/yard/tags/ref_tag.rb +7 -0
  194. data/vendor/bundle/gems/yard-0.7.4/lib/yard/tags/ref_tag_list.rb +27 -0
  195. data/vendor/bundle/gems/yard-0.7.4/lib/yard/tags/tag.rb +57 -0
  196. data/vendor/bundle/gems/yard-0.7.4/lib/yard/tags/tag_format_error.rb +6 -0
  197. data/vendor/bundle/gems/yard-0.7.4/lib/yard/templates/engine.rb +173 -0
  198. data/vendor/bundle/gems/yard-0.7.4/lib/yard/templates/erb_cache.rb +22 -0
  199. data/vendor/bundle/gems/yard-0.7.4/lib/yard/templates/helpers/base_helper.rb +206 -0
  200. data/vendor/bundle/gems/yard-0.7.4/lib/yard/templates/helpers/filter_helper.rb +26 -0
  201. data/vendor/bundle/gems/yard-0.7.4/lib/yard/templates/helpers/html_helper.rb +520 -0
  202. data/vendor/bundle/gems/yard-0.7.4/lib/yard/templates/helpers/html_syntax_highlight_helper.rb +59 -0
  203. data/vendor/bundle/gems/yard-0.7.4/lib/yard/templates/helpers/markup/rdoc_markup.rb +85 -0
  204. data/vendor/bundle/gems/yard-0.7.4/lib/yard/templates/helpers/markup_helper.rb +164 -0
  205. data/vendor/bundle/gems/yard-0.7.4/lib/yard/templates/helpers/method_helper.rb +72 -0
  206. data/vendor/bundle/gems/yard-0.7.4/lib/yard/templates/helpers/module_helper.rb +19 -0
  207. data/vendor/bundle/gems/yard-0.7.4/lib/yard/templates/helpers/text_helper.rb +95 -0
  208. data/vendor/bundle/gems/yard-0.7.4/lib/yard/templates/helpers/uml_helper.rb +46 -0
  209. data/vendor/bundle/gems/yard-0.7.4/lib/yard/templates/section.rb +106 -0
  210. data/vendor/bundle/gems/yard-0.7.4/lib/yard/templates/template.rb +366 -0
  211. data/vendor/bundle/gems/yard-0.7.4/lib/yard/verifier.rb +148 -0
  212. data/vendor/bundle/gems/yard-0.7.4/spec/cli/command_parser_spec.rb +43 -0
  213. data/vendor/bundle/gems/yard-0.7.4/spec/cli/command_spec.rb +36 -0
  214. data/vendor/bundle/gems/yard-0.7.4/spec/cli/config_spec.rb +92 -0
  215. data/vendor/bundle/gems/yard-0.7.4/spec/cli/diff_spec.rb +172 -0
  216. data/vendor/bundle/gems/yard-0.7.4/spec/cli/gems_spec.rb +81 -0
  217. data/vendor/bundle/gems/yard-0.7.4/spec/cli/help_spec.rb +22 -0
  218. data/vendor/bundle/gems/yard-0.7.4/spec/cli/list_spec.rb +8 -0
  219. data/vendor/bundle/gems/yard-0.7.4/spec/cli/server_spec.rb +171 -0
  220. data/vendor/bundle/gems/yard-0.7.4/spec/cli/stats_spec.rb +90 -0
  221. data/vendor/bundle/gems/yard-0.7.4/spec/cli/yardoc_spec.rb +628 -0
  222. data/vendor/bundle/gems/yard-0.7.4/spec/cli/yri_spec.rb +87 -0
  223. data/vendor/bundle/gems/yard-0.7.4/spec/code_objects/base_spec.rb +334 -0
  224. data/vendor/bundle/gems/yard-0.7.4/spec/code_objects/class_object_spec.rb +225 -0
  225. data/vendor/bundle/gems/yard-0.7.4/spec/code_objects/code_object_list_spec.rb +33 -0
  226. data/vendor/bundle/gems/yard-0.7.4/spec/code_objects/constants_spec.rb +81 -0
  227. data/vendor/bundle/gems/yard-0.7.4/spec/code_objects/extra_file_object_spec.rb +132 -0
  228. data/vendor/bundle/gems/yard-0.7.4/spec/code_objects/macro_object_spec.rb +154 -0
  229. data/vendor/bundle/gems/yard-0.7.4/spec/code_objects/method_object_spec.rb +152 -0
  230. data/vendor/bundle/gems/yard-0.7.4/spec/code_objects/module_object_spec.rb +141 -0
  231. data/vendor/bundle/gems/yard-0.7.4/spec/code_objects/namespace_object_spec.rb +170 -0
  232. data/vendor/bundle/gems/yard-0.7.4/spec/code_objects/proxy_spec.rb +124 -0
  233. data/vendor/bundle/gems/yard-0.7.4/spec/code_objects/spec_helper.rb +3 -0
  234. data/vendor/bundle/gems/yard-0.7.4/spec/config_spec.rb +167 -0
  235. data/vendor/bundle/gems/yard-0.7.4/spec/core_ext/array_spec.rb +14 -0
  236. data/vendor/bundle/gems/yard-0.7.4/spec/core_ext/file_spec.rb +68 -0
  237. data/vendor/bundle/gems/yard-0.7.4/spec/core_ext/hash_spec.rb +14 -0
  238. data/vendor/bundle/gems/yard-0.7.4/spec/core_ext/insertion_spec.rb +37 -0
  239. data/vendor/bundle/gems/yard-0.7.4/spec/core_ext/module_spec.rb +15 -0
  240. data/vendor/bundle/gems/yard-0.7.4/spec/core_ext/string_spec.rb +42 -0
  241. data/vendor/bundle/gems/yard-0.7.4/spec/core_ext/symbol_hash_spec.rb +86 -0
  242. data/vendor/bundle/gems/yard-0.7.4/spec/docstring_spec.rb +400 -0
  243. data/vendor/bundle/gems/yard-0.7.4/spec/handlers/alias_handler_spec.rb +80 -0
  244. data/vendor/bundle/gems/yard-0.7.4/spec/handlers/attribute_handler_spec.rb +94 -0
  245. data/vendor/bundle/gems/yard-0.7.4/spec/handlers/base_spec.rb +197 -0
  246. data/vendor/bundle/gems/yard-0.7.4/spec/handlers/class_condition_handler_spec.rb +62 -0
  247. data/vendor/bundle/gems/yard-0.7.4/spec/handlers/class_handler_spec.rb +246 -0
  248. data/vendor/bundle/gems/yard-0.7.4/spec/handlers/class_variable_handler_spec.rb +11 -0
  249. data/vendor/bundle/gems/yard-0.7.4/spec/handlers/constant_handler_spec.rb +64 -0
  250. data/vendor/bundle/gems/yard-0.7.4/spec/handlers/examples/alias_handler_001.rb.txt +44 -0
  251. data/vendor/bundle/gems/yard-0.7.4/spec/handlers/examples/attribute_handler_001.rb.txt +32 -0
  252. data/vendor/bundle/gems/yard-0.7.4/spec/handlers/examples/class_condition_handler_001.rb.txt +61 -0
  253. data/vendor/bundle/gems/yard-0.7.4/spec/handlers/examples/class_handler_001.rb.txt +120 -0
  254. data/vendor/bundle/gems/yard-0.7.4/spec/handlers/examples/class_variable_handler_001.rb.txt +10 -0
  255. data/vendor/bundle/gems/yard-0.7.4/spec/handlers/examples/constant_handler_001.rb.txt +25 -0
  256. data/vendor/bundle/gems/yard-0.7.4/spec/handlers/examples/exception_handler_001.rb.txt +59 -0
  257. data/vendor/bundle/gems/yard-0.7.4/spec/handlers/examples/extend_handler_001.rb.txt +16 -0
  258. data/vendor/bundle/gems/yard-0.7.4/spec/handlers/examples/macro_handler_001.rb.txt +83 -0
  259. data/vendor/bundle/gems/yard-0.7.4/spec/handlers/examples/method_condition_handler_001.rb.txt +10 -0
  260. data/vendor/bundle/gems/yard-0.7.4/spec/handlers/examples/method_handler_001.rb.txt +122 -0
  261. data/vendor/bundle/gems/yard-0.7.4/spec/handlers/examples/mixin_handler_001.rb.txt +33 -0
  262. data/vendor/bundle/gems/yard-0.7.4/spec/handlers/examples/module_handler_001.rb.txt +29 -0
  263. data/vendor/bundle/gems/yard-0.7.4/spec/handlers/examples/private_constant_handler_001.rb.txt +8 -0
  264. data/vendor/bundle/gems/yard-0.7.4/spec/handlers/examples/process_handler_001.rb.txt +11 -0
  265. data/vendor/bundle/gems/yard-0.7.4/spec/handlers/examples/visibility_handler_001.rb.txt +27 -0
  266. data/vendor/bundle/gems/yard-0.7.4/spec/handlers/examples/yield_handler_001.rb.txt +55 -0
  267. data/vendor/bundle/gems/yard-0.7.4/spec/handlers/exception_handler_spec.rb +48 -0
  268. data/vendor/bundle/gems/yard-0.7.4/spec/handlers/extend_handler_spec.rb +23 -0
  269. data/vendor/bundle/gems/yard-0.7.4/spec/handlers/legacy_base_spec.rb +128 -0
  270. data/vendor/bundle/gems/yard-0.7.4/spec/handlers/macro_handler_spec.rb +157 -0
  271. data/vendor/bundle/gems/yard-0.7.4/spec/handlers/method_condition_handler_spec.rb +14 -0
  272. data/vendor/bundle/gems/yard-0.7.4/spec/handlers/method_handler_spec.rb +177 -0
  273. data/vendor/bundle/gems/yard-0.7.4/spec/handlers/mixin_handler_spec.rb +50 -0
  274. data/vendor/bundle/gems/yard-0.7.4/spec/handlers/module_handler_spec.rb +34 -0
  275. data/vendor/bundle/gems/yard-0.7.4/spec/handlers/private_constant_handler_spec.rb +24 -0
  276. data/vendor/bundle/gems/yard-0.7.4/spec/handlers/processor_spec.rb +23 -0
  277. data/vendor/bundle/gems/yard-0.7.4/spec/handlers/ruby/base_spec.rb +90 -0
  278. data/vendor/bundle/gems/yard-0.7.4/spec/handlers/ruby/legacy/base_spec.rb +78 -0
  279. data/vendor/bundle/gems/yard-0.7.4/spec/handlers/spec_helper.rb +34 -0
  280. data/vendor/bundle/gems/yard-0.7.4/spec/handlers/visibility_handler_spec.rb +34 -0
  281. data/vendor/bundle/gems/yard-0.7.4/spec/handlers/yield_handler_spec.rb +51 -0
  282. data/vendor/bundle/gems/yard-0.7.4/spec/logging_spec.rb +14 -0
  283. data/vendor/bundle/gems/yard-0.7.4/spec/parser/base_spec.rb +24 -0
  284. data/vendor/bundle/gems/yard-0.7.4/spec/parser/c_parser_spec.rb +231 -0
  285. data/vendor/bundle/gems/yard-0.7.4/spec/parser/examples/array.c.txt +3887 -0
  286. data/vendor/bundle/gems/yard-0.7.4/spec/parser/examples/example1.rb.txt +8 -0
  287. data/vendor/bundle/gems/yard-0.7.4/spec/parser/examples/extrafile.c.txt +8 -0
  288. data/vendor/bundle/gems/yard-0.7.4/spec/parser/examples/multifile.c.txt +6 -0
  289. data/vendor/bundle/gems/yard-0.7.4/spec/parser/examples/override.c.txt +424 -0
  290. data/vendor/bundle/gems/yard-0.7.4/spec/parser/examples/parse_in_order_001.rb.txt +2 -0
  291. data/vendor/bundle/gems/yard-0.7.4/spec/parser/examples/parse_in_order_002.rb.txt +2 -0
  292. data/vendor/bundle/gems/yard-0.7.4/spec/parser/examples/tag_handler_001.rb.txt +8 -0
  293. data/vendor/bundle/gems/yard-0.7.4/spec/parser/ruby/ast_node_spec.rb +33 -0
  294. data/vendor/bundle/gems/yard-0.7.4/spec/parser/ruby/legacy/statement_list_spec.rb +299 -0
  295. data/vendor/bundle/gems/yard-0.7.4/spec/parser/ruby/legacy/token_list_spec.rb +69 -0
  296. data/vendor/bundle/gems/yard-0.7.4/spec/parser/ruby/ruby_parser_spec.rb +257 -0
  297. data/vendor/bundle/gems/yard-0.7.4/spec/parser/source_parser_spec.rb +595 -0
  298. data/vendor/bundle/gems/yard-0.7.4/spec/parser/tag_parsing_spec.rb +18 -0
  299. data/vendor/bundle/gems/yard-0.7.4/spec/rake/yardoc_task_spec.rb +90 -0
  300. data/vendor/bundle/gems/yard-0.7.4/spec/registry_spec.rb +303 -0
  301. data/vendor/bundle/gems/yard-0.7.4/spec/registry_store_spec.rb +255 -0
  302. data/vendor/bundle/gems/yard-0.7.4/spec/serializers/data/serialized_yardoc/checksums +1 -0
  303. data/vendor/bundle/gems/yard-0.7.4/spec/serializers/data/serialized_yardoc/objects/Foo.dat +0 -0
  304. data/vendor/bundle/gems/yard-0.7.4/spec/serializers/data/serialized_yardoc/objects/Foo/bar_i.dat +0 -0
  305. data/vendor/bundle/gems/yard-0.7.4/spec/serializers/data/serialized_yardoc/objects/Foo/baz_i.dat +0 -0
  306. data/vendor/bundle/gems/yard-0.7.4/spec/serializers/data/serialized_yardoc/objects/root.dat +0 -0
  307. data/vendor/bundle/gems/yard-0.7.4/spec/serializers/data/serialized_yardoc/proxy_types +2 -0
  308. data/vendor/bundle/gems/yard-0.7.4/spec/serializers/file_system_serializer_spec.rb +124 -0
  309. data/vendor/bundle/gems/yard-0.7.4/spec/serializers/spec_helper.rb +2 -0
  310. data/vendor/bundle/gems/yard-0.7.4/spec/serializers/yardoc_serializer_spec.rb +46 -0
  311. data/vendor/bundle/gems/yard-0.7.4/spec/server/adapter_spec.rb +38 -0
  312. data/vendor/bundle/gems/yard-0.7.4/spec/server/commands/base_spec.rb +87 -0
  313. data/vendor/bundle/gems/yard-0.7.4/spec/server/commands/library_command_spec.rb +39 -0
  314. data/vendor/bundle/gems/yard-0.7.4/spec/server/commands/static_file_command_spec.rb +84 -0
  315. data/vendor/bundle/gems/yard-0.7.4/spec/server/doc_server_serializer_spec.rb +58 -0
  316. data/vendor/bundle/gems/yard-0.7.4/spec/server/rack_adapter_spec.rb +18 -0
  317. data/vendor/bundle/gems/yard-0.7.4/spec/server/router_spec.rb +115 -0
  318. data/vendor/bundle/gems/yard-0.7.4/spec/server/spec_helper.rb +17 -0
  319. data/vendor/bundle/gems/yard-0.7.4/spec/server/static_caching_spec.rb +39 -0
  320. data/vendor/bundle/gems/yard-0.7.4/spec/server/webrick_servlet_spec.rb +20 -0
  321. data/vendor/bundle/gems/yard-0.7.4/spec/server_spec.rb +10 -0
  322. data/vendor/bundle/gems/yard-0.7.4/spec/spec_helper.rb +105 -0
  323. data/vendor/bundle/gems/yard-0.7.4/spec/tags/default_factory_spec.rb +138 -0
  324. data/vendor/bundle/gems/yard-0.7.4/spec/tags/default_tag_spec.rb +11 -0
  325. data/vendor/bundle/gems/yard-0.7.4/spec/tags/library_spec.rb +23 -0
  326. data/vendor/bundle/gems/yard-0.7.4/spec/tags/overload_tag_spec.rb +53 -0
  327. data/vendor/bundle/gems/yard-0.7.4/spec/tags/ref_tag_list_spec.rb +53 -0
  328. data/vendor/bundle/gems/yard-0.7.4/spec/templates/class_spec.rb +43 -0
  329. data/vendor/bundle/gems/yard-0.7.4/spec/templates/constant_spec.rb +40 -0
  330. data/vendor/bundle/gems/yard-0.7.4/spec/templates/engine_spec.rb +129 -0
  331. data/vendor/bundle/gems/yard-0.7.4/spec/templates/examples/class001.html +280 -0
  332. data/vendor/bundle/gems/yard-0.7.4/spec/templates/examples/class001.txt +36 -0
  333. data/vendor/bundle/gems/yard-0.7.4/spec/templates/examples/class002.html +35 -0
  334. data/vendor/bundle/gems/yard-0.7.4/spec/templates/examples/constant001.txt +25 -0
  335. data/vendor/bundle/gems/yard-0.7.4/spec/templates/examples/constant002.txt +7 -0
  336. data/vendor/bundle/gems/yard-0.7.4/spec/templates/examples/constant003.txt +11 -0
  337. data/vendor/bundle/gems/yard-0.7.4/spec/templates/examples/method001.html +130 -0
  338. data/vendor/bundle/gems/yard-0.7.4/spec/templates/examples/method001.txt +35 -0
  339. data/vendor/bundle/gems/yard-0.7.4/spec/templates/examples/method002.html +86 -0
  340. data/vendor/bundle/gems/yard-0.7.4/spec/templates/examples/method002.txt +20 -0
  341. data/vendor/bundle/gems/yard-0.7.4/spec/templates/examples/method003.html +159 -0
  342. data/vendor/bundle/gems/yard-0.7.4/spec/templates/examples/method003.txt +45 -0
  343. data/vendor/bundle/gems/yard-0.7.4/spec/templates/examples/method004.html +44 -0
  344. data/vendor/bundle/gems/yard-0.7.4/spec/templates/examples/method004.txt +10 -0
  345. data/vendor/bundle/gems/yard-0.7.4/spec/templates/examples/method005.html +99 -0
  346. data/vendor/bundle/gems/yard-0.7.4/spec/templates/examples/method005.txt +33 -0
  347. data/vendor/bundle/gems/yard-0.7.4/spec/templates/examples/module001.dot +33 -0
  348. data/vendor/bundle/gems/yard-0.7.4/spec/templates/examples/module001.html +795 -0
  349. data/vendor/bundle/gems/yard-0.7.4/spec/templates/examples/module001.txt +33 -0
  350. data/vendor/bundle/gems/yard-0.7.4/spec/templates/examples/module002.html +319 -0
  351. data/vendor/bundle/gems/yard-0.7.4/spec/templates/examples/tag001.txt +82 -0
  352. data/vendor/bundle/gems/yard-0.7.4/spec/templates/helpers/base_helper_spec.rb +175 -0
  353. data/vendor/bundle/gems/yard-0.7.4/spec/templates/helpers/html_helper_spec.rb +541 -0
  354. data/vendor/bundle/gems/yard-0.7.4/spec/templates/helpers/html_syntax_highlight_helper_spec.rb +48 -0
  355. data/vendor/bundle/gems/yard-0.7.4/spec/templates/helpers/markup/rdoc_markup_spec.rb +84 -0
  356. data/vendor/bundle/gems/yard-0.7.4/spec/templates/helpers/markup_helper_spec.rb +132 -0
  357. data/vendor/bundle/gems/yard-0.7.4/spec/templates/helpers/method_helper_spec.rb +75 -0
  358. data/vendor/bundle/gems/yard-0.7.4/spec/templates/helpers/shared_signature_examples.rb +121 -0
  359. data/vendor/bundle/gems/yard-0.7.4/spec/templates/helpers/text_helper_spec.rb +44 -0
  360. data/vendor/bundle/gems/yard-0.7.4/spec/templates/method_spec.rb +102 -0
  361. data/vendor/bundle/gems/yard-0.7.4/spec/templates/module_spec.rb +109 -0
  362. data/vendor/bundle/gems/yard-0.7.4/spec/templates/onefile_spec.rb +47 -0
  363. data/vendor/bundle/gems/yard-0.7.4/spec/templates/section_spec.rb +146 -0
  364. data/vendor/bundle/gems/yard-0.7.4/spec/templates/spec_helper.rb +42 -0
  365. data/vendor/bundle/gems/yard-0.7.4/spec/templates/tag_spec.rb +39 -0
  366. data/vendor/bundle/gems/yard-0.7.4/spec/templates/template_spec.rb +401 -0
  367. data/vendor/bundle/gems/yard-0.7.4/spec/verifier_spec.rb +86 -0
  368. data/vendor/bundle/gems/yard-0.7.4/templates/default/class/dot/setup.rb +6 -0
  369. data/vendor/bundle/gems/yard-0.7.4/templates/default/class/dot/superklass.erb +3 -0
  370. data/vendor/bundle/gems/yard-0.7.4/templates/default/class/html/constructor_details.erb +8 -0
  371. data/vendor/bundle/gems/yard-0.7.4/templates/default/class/html/setup.rb +1 -0
  372. data/vendor/bundle/gems/yard-0.7.4/templates/default/class/html/subclasses.erb +4 -0
  373. data/vendor/bundle/gems/yard-0.7.4/templates/default/class/setup.rb +36 -0
  374. data/vendor/bundle/gems/yard-0.7.4/templates/default/class/text/setup.rb +11 -0
  375. data/vendor/bundle/gems/yard-0.7.4/templates/default/class/text/subclasses.erb +5 -0
  376. data/vendor/bundle/gems/yard-0.7.4/templates/default/constant/text/header.erb +11 -0
  377. data/vendor/bundle/gems/yard-0.7.4/templates/default/constant/text/setup.rb +3 -0
  378. data/vendor/bundle/gems/yard-0.7.4/templates/default/docstring/html/abstract.erb +4 -0
  379. data/vendor/bundle/gems/yard-0.7.4/templates/default/docstring/html/deprecated.erb +1 -0
  380. data/vendor/bundle/gems/yard-0.7.4/templates/default/docstring/html/index.erb +5 -0
  381. data/vendor/bundle/gems/yard-0.7.4/templates/default/docstring/html/note.erb +6 -0
  382. data/vendor/bundle/gems/yard-0.7.4/templates/default/docstring/html/private.erb +4 -0
  383. data/vendor/bundle/gems/yard-0.7.4/templates/default/docstring/html/returns_void.erb +1 -0
  384. data/vendor/bundle/gems/yard-0.7.4/templates/default/docstring/html/text.erb +1 -0
  385. data/vendor/bundle/gems/yard-0.7.4/templates/default/docstring/html/todo.erb +6 -0
  386. data/vendor/bundle/gems/yard-0.7.4/templates/default/docstring/setup.rb +49 -0
  387. data/vendor/bundle/gems/yard-0.7.4/templates/default/docstring/text/abstract.erb +2 -0
  388. data/vendor/bundle/gems/yard-0.7.4/templates/default/docstring/text/deprecated.erb +2 -0
  389. data/vendor/bundle/gems/yard-0.7.4/templates/default/docstring/text/index.erb +2 -0
  390. data/vendor/bundle/gems/yard-0.7.4/templates/default/docstring/text/note.erb +4 -0
  391. data/vendor/bundle/gems/yard-0.7.4/templates/default/docstring/text/private.erb +2 -0
  392. data/vendor/bundle/gems/yard-0.7.4/templates/default/docstring/text/returns_void.erb +1 -0
  393. data/vendor/bundle/gems/yard-0.7.4/templates/default/docstring/text/text.erb +1 -0
  394. data/vendor/bundle/gems/yard-0.7.4/templates/default/docstring/text/todo.erb +4 -0
  395. data/vendor/bundle/gems/yard-0.7.4/templates/default/fulldoc/html/css/common.css +1 -0
  396. data/vendor/bundle/gems/yard-0.7.4/templates/default/fulldoc/html/css/full_list.css +55 -0
  397. data/vendor/bundle/gems/yard-0.7.4/templates/default/fulldoc/html/css/style.css +322 -0
  398. data/vendor/bundle/gems/yard-0.7.4/templates/default/fulldoc/html/frames.erb +13 -0
  399. data/vendor/bundle/gems/yard-0.7.4/templates/default/fulldoc/html/full_list.erb +37 -0
  400. data/vendor/bundle/gems/yard-0.7.4/templates/default/fulldoc/html/full_list_class.erb +2 -0
  401. data/vendor/bundle/gems/yard-0.7.4/templates/default/fulldoc/html/full_list_files.erb +5 -0
  402. data/vendor/bundle/gems/yard-0.7.4/templates/default/fulldoc/html/full_list_methods.erb +12 -0
  403. data/vendor/bundle/gems/yard-0.7.4/templates/default/fulldoc/html/js/app.js +205 -0
  404. data/vendor/bundle/gems/yard-0.7.4/templates/default/fulldoc/html/js/full_list.js +167 -0
  405. data/vendor/bundle/gems/yard-0.7.4/templates/default/fulldoc/html/js/jquery.js +16 -0
  406. data/vendor/bundle/gems/yard-0.7.4/templates/default/fulldoc/html/setup.rb +198 -0
  407. data/vendor/bundle/gems/yard-0.7.4/templates/default/layout/dot/header.erb +6 -0
  408. data/vendor/bundle/gems/yard-0.7.4/templates/default/layout/dot/setup.rb +14 -0
  409. data/vendor/bundle/gems/yard-0.7.4/templates/default/layout/html/breadcrumb.erb +13 -0
  410. data/vendor/bundle/gems/yard-0.7.4/templates/default/layout/html/files.erb +11 -0
  411. data/vendor/bundle/gems/yard-0.7.4/templates/default/layout/html/footer.erb +5 -0
  412. data/vendor/bundle/gems/yard-0.7.4/templates/default/layout/html/headers.erb +17 -0
  413. data/vendor/bundle/gems/yard-0.7.4/templates/default/layout/html/index.erb +2 -0
  414. data/vendor/bundle/gems/yard-0.7.4/templates/default/layout/html/layout.erb +24 -0
  415. data/vendor/bundle/gems/yard-0.7.4/templates/default/layout/html/listing.erb +4 -0
  416. data/vendor/bundle/gems/yard-0.7.4/templates/default/layout/html/objects.erb +32 -0
  417. data/vendor/bundle/gems/yard-0.7.4/templates/default/layout/html/search.erb +5 -0
  418. data/vendor/bundle/gems/yard-0.7.4/templates/default/layout/html/setup.rb +71 -0
  419. data/vendor/bundle/gems/yard-0.7.4/templates/default/method/html/header.erb +16 -0
  420. data/vendor/bundle/gems/yard-0.7.4/templates/default/method/setup.rb +3 -0
  421. data/vendor/bundle/gems/yard-0.7.4/templates/default/method/text/header.erb +1 -0
  422. data/vendor/bundle/gems/yard-0.7.4/templates/default/method_details/html/header.erb +3 -0
  423. data/vendor/bundle/gems/yard-0.7.4/templates/default/method_details/html/method_signature.erb +18 -0
  424. data/vendor/bundle/gems/yard-0.7.4/templates/default/method_details/html/source.erb +10 -0
  425. data/vendor/bundle/gems/yard-0.7.4/templates/default/method_details/setup.rb +9 -0
  426. data/vendor/bundle/gems/yard-0.7.4/templates/default/method_details/text/header.erb +10 -0
  427. data/vendor/bundle/gems/yard-0.7.4/templates/default/method_details/text/method_signature.erb +12 -0
  428. data/vendor/bundle/gems/yard-0.7.4/templates/default/method_details/text/setup.rb +10 -0
  429. data/vendor/bundle/gems/yard-0.7.4/templates/default/module/dot/child.erb +1 -0
  430. data/vendor/bundle/gems/yard-0.7.4/templates/default/module/dot/dependencies.erb +3 -0
  431. data/vendor/bundle/gems/yard-0.7.4/templates/default/module/dot/header.erb +6 -0
  432. data/vendor/bundle/gems/yard-0.7.4/templates/default/module/dot/info.erb +14 -0
  433. data/vendor/bundle/gems/yard-0.7.4/templates/default/module/dot/setup.rb +14 -0
  434. data/vendor/bundle/gems/yard-0.7.4/templates/default/module/html/attribute_details.erb +11 -0
  435. data/vendor/bundle/gems/yard-0.7.4/templates/default/module/html/attribute_summary.erb +8 -0
  436. data/vendor/bundle/gems/yard-0.7.4/templates/default/module/html/box_info.erb +37 -0
  437. data/vendor/bundle/gems/yard-0.7.4/templates/default/module/html/children.erb +8 -0
  438. data/vendor/bundle/gems/yard-0.7.4/templates/default/module/html/constant_summary.erb +13 -0
  439. data/vendor/bundle/gems/yard-0.7.4/templates/default/module/html/defines.erb +3 -0
  440. data/vendor/bundle/gems/yard-0.7.4/templates/default/module/html/header.erb +5 -0
  441. data/vendor/bundle/gems/yard-0.7.4/templates/default/module/html/inherited_attributes.erb +17 -0
  442. data/vendor/bundle/gems/yard-0.7.4/templates/default/module/html/inherited_constants.erb +8 -0
  443. data/vendor/bundle/gems/yard-0.7.4/templates/default/module/html/inherited_methods.erb +18 -0
  444. data/vendor/bundle/gems/yard-0.7.4/templates/default/module/html/item_summary.erb +30 -0
  445. data/vendor/bundle/gems/yard-0.7.4/templates/default/module/html/method_details_list.erb +9 -0
  446. data/vendor/bundle/gems/yard-0.7.4/templates/default/module/html/method_summary.erb +14 -0
  447. data/vendor/bundle/gems/yard-0.7.4/templates/default/module/html/methodmissing.erb +12 -0
  448. data/vendor/bundle/gems/yard-0.7.4/templates/default/module/html/pre_docstring.erb +1 -0
  449. data/vendor/bundle/gems/yard-0.7.4/templates/default/module/setup.rb +129 -0
  450. data/vendor/bundle/gems/yard-0.7.4/templates/default/module/text/children.erb +10 -0
  451. data/vendor/bundle/gems/yard-0.7.4/templates/default/module/text/class_meths_list.erb +8 -0
  452. data/vendor/bundle/gems/yard-0.7.4/templates/default/module/text/extends.erb +8 -0
  453. data/vendor/bundle/gems/yard-0.7.4/templates/default/module/text/header.erb +7 -0
  454. data/vendor/bundle/gems/yard-0.7.4/templates/default/module/text/includes.erb +8 -0
  455. data/vendor/bundle/gems/yard-0.7.4/templates/default/module/text/instance_meths_list.erb +8 -0
  456. data/vendor/bundle/gems/yard-0.7.4/templates/default/module/text/setup.rb +12 -0
  457. data/vendor/bundle/gems/yard-0.7.4/templates/default/onefile/html/files.erb +5 -0
  458. data/vendor/bundle/gems/yard-0.7.4/templates/default/onefile/html/layout.erb +22 -0
  459. data/vendor/bundle/gems/yard-0.7.4/templates/default/onefile/html/readme.erb +3 -0
  460. data/vendor/bundle/gems/yard-0.7.4/templates/default/onefile/html/setup.rb +43 -0
  461. data/vendor/bundle/gems/yard-0.7.4/templates/default/root/dot/child.erb +3 -0
  462. data/vendor/bundle/gems/yard-0.7.4/templates/default/root/dot/setup.rb +5 -0
  463. data/vendor/bundle/gems/yard-0.7.4/templates/default/root/html/setup.rb +1 -0
  464. data/vendor/bundle/gems/yard-0.7.4/templates/default/tags/html/example.erb +9 -0
  465. data/vendor/bundle/gems/yard-0.7.4/templates/default/tags/html/index.erb +3 -0
  466. data/vendor/bundle/gems/yard-0.7.4/templates/default/tags/html/option.erb +22 -0
  467. data/vendor/bundle/gems/yard-0.7.4/templates/default/tags/html/overload.erb +14 -0
  468. data/vendor/bundle/gems/yard-0.7.4/templates/default/tags/html/see.erb +8 -0
  469. data/vendor/bundle/gems/yard-0.7.4/templates/default/tags/html/tag.erb +20 -0
  470. data/vendor/bundle/gems/yard-0.7.4/templates/default/tags/setup.rb +50 -0
  471. data/vendor/bundle/gems/yard-0.7.4/templates/default/tags/text/example.erb +12 -0
  472. data/vendor/bundle/gems/yard-0.7.4/templates/default/tags/text/index.erb +1 -0
  473. data/vendor/bundle/gems/yard-0.7.4/templates/default/tags/text/option.erb +20 -0
  474. data/vendor/bundle/gems/yard-0.7.4/templates/default/tags/text/overload.erb +19 -0
  475. data/vendor/bundle/gems/yard-0.7.4/templates/default/tags/text/see.erb +11 -0
  476. data/vendor/bundle/gems/yard-0.7.4/templates/default/tags/text/tag.erb +13 -0
  477. data/vendor/bundle/gems/yard-0.7.4/templates/guide/class/html/setup.rb +1 -0
  478. data/vendor/bundle/gems/yard-0.7.4/templates/guide/docstring/html/setup.rb +1 -0
  479. data/vendor/bundle/gems/yard-0.7.4/templates/guide/fulldoc/html/css/style.css +93 -0
  480. data/vendor/bundle/gems/yard-0.7.4/templates/guide/fulldoc/html/js/app.js +33 -0
  481. data/vendor/bundle/gems/yard-0.7.4/templates/guide/fulldoc/html/setup.rb +54 -0
  482. data/vendor/bundle/gems/yard-0.7.4/templates/guide/layout/html/layout.erb +81 -0
  483. data/vendor/bundle/gems/yard-0.7.4/templates/guide/layout/html/setup.rb +24 -0
  484. data/vendor/bundle/gems/yard-0.7.4/templates/guide/method/html/header.erb +18 -0
  485. data/vendor/bundle/gems/yard-0.7.4/templates/guide/method/html/setup.rb +21 -0
  486. data/vendor/bundle/gems/yard-0.7.4/templates/guide/module/html/header.erb +7 -0
  487. data/vendor/bundle/gems/yard-0.7.4/templates/guide/module/html/method_list.erb +5 -0
  488. data/vendor/bundle/gems/yard-0.7.4/templates/guide/module/html/setup.rb +26 -0
  489. data/vendor/bundle/gems/yard-0.7.4/templates/guide/tags/html/setup.rb +8 -0
  490. data/vendor/bundle/specifications/yard-0.7.4.gemspec +28 -0
  491. metadata +505 -8
@@ -0,0 +1,74 @@
1
+ LEGAL NOTICE INFORMATION
2
+ ------------------------
3
+
4
+ All the files in this distribution are covered under either the MIT
5
+ license (see the file LICENSE) except some files mentioned below.
6
+
7
+ lib/parser/c_parser.rb:
8
+
9
+ This file includes code from the RDoc distribution. It is under the Ruby
10
+ license but adds the following copyright:
11
+
12
+ RDoc is copyrighted free software by Dave Thomas, Eric Hodel, and others.
13
+ It is licensed under the same terms as Ruby
14
+
15
+ lib/parser/ruby/legacy/ruby_lex.rb:
16
+
17
+ This file is under the Ruby license. YARD uses a modified version of it.
18
+
19
+ Ruby is copyrighted free software by Yukihiro Matsumoto <matz@netlab.jp>.
20
+ You can redistribute it and/or modify it under either the terms of the GPL
21
+ version 2 (see the file GPL), or the conditions below:
22
+
23
+ 1. You may make and give away verbatim copies of the source form of the
24
+ software without restriction, provided that you duplicate all of the
25
+ original copyright notices and associated disclaimers.
26
+
27
+ 2. You may modify your copy of the software in any way, provided that
28
+ you do at least ONE of the following:
29
+
30
+ a) place your modifications in the Public Domain or otherwise
31
+ make them Freely Available, such as by posting said
32
+ modifications to Usenet or an equivalent medium, or by allowing
33
+ the author to include your modifications in the software.
34
+
35
+ b) use the modified software only within your corporation or
36
+ organization.
37
+
38
+ c) give non-standard binaries non-standard names, with
39
+ instructions on where to get the original software distribution.
40
+
41
+ d) make other distribution arrangements with the author.
42
+
43
+ 3. You may distribute the software in object code or binary form,
44
+ provided that you do at least ONE of the following:
45
+
46
+ a) distribute the binaries and library files of the software,
47
+ together with instructions (in the manual page or equivalent)
48
+ on where to get the original distribution.
49
+
50
+ b) accompany the distribution with the machine-readable source of
51
+ the software.
52
+
53
+ c) give non-standard binaries non-standard names, with
54
+ instructions on where to get the original software distribution.
55
+
56
+ d) make other distribution arrangements with the author.
57
+
58
+ 4. You may modify and include the part of the software into any other
59
+ software (possibly commercial). But some files in the distribution
60
+ are not written by the author, so that they are not under these terms.
61
+
62
+ For the list of those files and their copying conditions, see the
63
+ file LEGAL.
64
+
65
+ 5. The scripts and library files supplied as input to or produced as
66
+ output from the software do not automatically fall under the
67
+ copyright of the software, but belong to whomever generated them,
68
+ and may be sold commercially, and may be aggregated with this
69
+ software.
70
+
71
+ 6. THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR
72
+ IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
73
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
74
+ PURPOSE.
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2007-2011 Loren Segal
2
+
3
+ Permission is hereby granted, free of charge, to any person
4
+ obtaining a copy of this software and associated documentation
5
+ files (the "Software"), to deal in the Software without
6
+ restriction, including without limitation the rights to use,
7
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
8
+ copies of the Software, and to permit persons to whom the
9
+ Software is furnished to do so, subject to the following
10
+ conditions:
11
+
12
+ The above copyright notice and this permission notice shall be
13
+ included in all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
16
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
17
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
18
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
19
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
20
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
22
+ OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,514 @@
1
+ YARD: Yay! A Ruby Documentation Tool
2
+ ====================================
3
+
4
+ **Homepage**: [http://yardoc.org](http://yardoc.org)
5
+ **IRC**: [irc.freenode.net / #yard](irc://irc.freenode.net/yard)
6
+ **Git**: [http://github.com/lsegal/yard](http://github.com/lsegal/yard)
7
+ **Author**: Loren Segal
8
+ **Contributors**: See Contributors section below
9
+ **Copyright**: 2007-2011
10
+ **License**: MIT License
11
+ **Latest Version**: 0.7.4 (codename "Kennedy")
12
+ **Release Date**: December 2nd 2011
13
+
14
+ Synopsis
15
+ --------
16
+
17
+ YARD is a documentation generation tool for the Ruby programming language.
18
+ It enables the user to generate consistent, usable documentation that can be
19
+ exported to a number of formats very easily, and also supports extending for
20
+ custom Ruby constructs such as custom class level definitions. Below is a
21
+ summary of some of YARD's notable features.
22
+
23
+
24
+ Feature List
25
+ ------------
26
+
27
+ **1. RDoc/SimpleMarkup Formatting Compatibility**: YARD is made to be compatible
28
+ with RDoc formatting. In fact, YARD does no processing on RDoc documentation
29
+ strings, and leaves this up to the output generation tool to decide how to
30
+ render the documentation.
31
+
32
+ **2. Yardoc Meta-tag Formatting Like Python, Java, Objective-C and other languages**:
33
+ YARD uses a '@tag' style definition syntax for meta tags alongside regular code
34
+ documentation. These tags should be able to happily sit side by side RDoc formatted
35
+ documentation, but provide a much more consistent and usable way to describe
36
+ important information about objects, such as what parameters they take and what types
37
+ they are expected to be, what type a method should return, what exceptions it can
38
+ raise, if it is deprecated, etc.. It also allows information to be better (and more
39
+ consistently) organized during the output generation phase. You can find a list
40
+ of tags in the {file:docs/Tags.md#taglist Tags.md} file.
41
+
42
+ YARD also supports an optional "types" declarations for certain tags.
43
+ This allows the developer to document type signatures for ruby methods and
44
+ parameters in a non intrusive but helpful and consistent manner. Instead of
45
+ describing this data in the body of the description, a developer may formally
46
+ declare the parameter or return type(s) in a single line. Consider the
47
+ following method documented with YARD formatting:
48
+
49
+ # Reverses the contents of a String or IO object.
50
+ #
51
+ # @param [String, #read] contents the contents to reverse
52
+ # @return [String] the contents reversed lexically
53
+ def reverse(contents)
54
+ contents = contents.read if respond_to? :read
55
+ contents.reverse
56
+ end
57
+
58
+ With the above @param tag, we learn that the contents parameter can either be
59
+ a String or any object that responds to the 'read' method, which is more
60
+ powerful than the textual description, which says it should be an IO object.
61
+ This also informs the developer that they should expect to receive a String
62
+ object returned by the method, and although this may be obvious for a
63
+ 'reverse' method, it becomes very useful when the method name may not be as
64
+ descriptive.
65
+
66
+ **3. Custom Constructs and Extensibility of YARD**: YARD is designed to be
67
+ extended and customized by plugins. Take for instance the scenario where you
68
+ need to document the following code:
69
+
70
+ class List
71
+ # Sets the publisher name for the list.
72
+ cattr_accessor :publisher
73
+ end
74
+
75
+ This custom declaration provides dynamically generated code that is hard for a
76
+ documentation tool to properly document without help from the developer. To
77
+ ease the pains of manually documenting the procedure, YARD can be extended by
78
+ the developer to handle the `cattr_accessor` construct and automatically create
79
+ an attribute on the class with the associated documentation. This makes
80
+ documenting external API's, especially dynamic ones, a lot more consistent for
81
+ consumption by the users.
82
+
83
+ YARD is also designed for extensibility everywhere else, allowing you to add
84
+ support for new programming languages, new data structures and even where/how
85
+ data is stored.
86
+
87
+ **4. Raw Data Output**: YARD also outputs documented objects as raw data (the
88
+ dumped Namespace) which can be reloaded to do generation at a later date, or
89
+ even auditing on code. This means that any developer can use the raw data to
90
+ perform output generation for any custom format, such as YAML, for instance.
91
+ While YARD plans to support XHTML style documentation output as well as
92
+ command line (text based) and possibly XML, this may still be useful for those
93
+ who would like to reap the benefits of YARD's processing in other forms, such
94
+ as throwing all the documentation into a database. Another useful way of
95
+ exploiting this raw data format would be to write tools that can auto generate
96
+ test cases, for example, or show possible unhandled exceptions in code.
97
+
98
+ **5. Local Documentation Server**: YARD can serve documentation for projects
99
+ or installed gems (similar to `gem server`) with the added benefit of dynamic
100
+ searching, as well as live reloading. Using the live reload feature, you can
101
+ document your code and immediately preview the results by refreshing the page;
102
+ YARD will do all the work in re-generating the HTML. This makes writing
103
+ documentation a much faster process.
104
+
105
+
106
+ Installing
107
+ ----------
108
+
109
+ To install YARD, use the following command:
110
+
111
+ $ gem install yard
112
+
113
+ (Add `sudo` if you're installing under a POSIX system as root)
114
+
115
+ Alternatively, if you've checked the source out directly, you can call
116
+ `rake install` from the root project directory.
117
+
118
+ **Important Note for Debian/Ubuntu users:** there's a possible chance your Ruby
119
+ install lacks RDoc, which is occasionally used by YARD to convert markup to HTML.
120
+ If running `which rdoc` turns up empty, install RDoc by issuing:
121
+
122
+ $ sudo apt-get install rdoc
123
+
124
+
125
+ Usage
126
+ -----
127
+
128
+ There are a couple of ways to use YARD. The first is via command-line, and the
129
+ second is the Rake task.
130
+
131
+ **1. yard Command-line Tool**
132
+
133
+ YARD comes packaged with a executable named `yard` which can control the many
134
+ functions of YARD, including generating documentation, graphs running the
135
+ YARD server, and so on. To view a list of available YARD commands, type:
136
+
137
+ $ yard --help
138
+
139
+ Plugins can also add commands to the `yard` executable to provide extra
140
+ functionality.
141
+
142
+ ### Generating Documentation
143
+
144
+ <span class="note">The `yardoc` executable is a shortcut for `yard doc`.</span>
145
+
146
+ The most common command you will probably use is `yard doc`, or `yardoc`. You
147
+ can type `yardoc --help` to see the options that YARD provides, but the
148
+ easiest way to generate docs for your code is to simply type `yardoc` in your
149
+ project root. This will assume your files are
150
+ located in the `lib/` directory. If they are located elsewhere, you can specify
151
+ paths and globs from the commandline via:
152
+
153
+ $ yardoc 'lib/**/*.rb' 'app/**/*.rb' ...etc...
154
+
155
+ The tool will generate a `.yardoc` file which will store the cached database
156
+ of your source code and documentation. If you want to re-generate your docs
157
+ with another template you can simply use the `--use-cache` (or -c)
158
+ option to speed up the generation process by skipping source parsing.
159
+
160
+ YARD will by default only document code in your public visibility. You can
161
+ document your protected and private code by adding `--protected` or
162
+ `--private` to the option switches. In addition, you can add `--no-private`
163
+ to also ignore any object that has the `@private` meta-tag. This is similar
164
+ to RDoc's ":nodoc:" behaviour, though the distinction is important. RDoc
165
+ implies that the object with :nodoc: would not be documented, whereas
166
+ YARD still recommends documenting private objects for the private API (for
167
+ maintainer/developer consumption).
168
+
169
+ You can also add extra informative files (README, LICENSE) by separating
170
+ the globs and the filenames with '-'.
171
+
172
+ $ yardoc 'app/**/*.rb' - README LICENSE FAQ
173
+
174
+ If no globs precede the '-' argument, the default glob (`lib/**/*.rb`) is
175
+ used:
176
+
177
+ $ yardoc - README LICENSE FAQ
178
+
179
+ Note that the README file can be specified with its own `--readme` switch.
180
+
181
+ You can also add a `.yardopts` file to your project directory which lists
182
+ the switches separated by whitespace (newlines or space) to pass to yardoc
183
+ whenever it is run. A full overview of the `.yardopts` file can be found in
184
+ {YARD::CLI::Yardoc}.
185
+
186
+ ### Queries
187
+
188
+ The `yardoc` tool also supports a `--query` argument to only include objects
189
+ that match a certain data or meta-data query. The query syntax is Ruby, though
190
+ a few shortcuts are available. For instance, to document only objects that have
191
+ an "@api" tag with the value "public", all of the following syntaxes would give
192
+ the same result:
193
+
194
+ --query '@api.text == "public"'
195
+ --query 'object.has_tag?(:api) && object.tag(:api).text == "public"'
196
+ --query 'has_tag?(:api) && tag(:api).text == "public"'
197
+
198
+ Note that the "@tag" syntax returns the first tag named "tag" on the object.
199
+ To return the array of all tags named "tag", use "@@tag".
200
+
201
+ Multiple `--query` arguments are allowed in the command line parameters. The
202
+ following two lines both check for the existence of a return and param tag:
203
+
204
+ --query '@return' --query '@param'
205
+ --query '@return && @param'
206
+
207
+ For more information about the query syntax, see the {YARD::Verifier} class.
208
+
209
+ **2. Rake Task**
210
+
211
+ The second most obvious is to generate docs via a Rake task. You can do this by
212
+ adding the following to your `Rakefile`:
213
+
214
+ YARD::Rake::YardocTask.new do |t|
215
+ t.files = ['lib/**/*.rb', OTHER_PATHS] # optional
216
+ t.options = ['--any', '--extra', '--opts'] # optional
217
+ end
218
+
219
+ both the `files` and `options` settings are optional. `files` will default to
220
+ `lib/**/*.rb` and `options` will represents any options you might want
221
+ to add. Again, a full list of options is available by typing `yardoc --help`
222
+ in a shell. You can also override the options at the Rake command-line with the
223
+ OPTS environment variable:
224
+
225
+ $ rake yard OPTS='--any --extra --opts'
226
+
227
+ **3. `yri` RI Implementation**
228
+
229
+ The yri binary will use the cached .yardoc database to give you quick ri-style
230
+ access to your documentation. It's way faster than ri but currently does not
231
+ work with the stdlib or core Ruby libraries, only the active project. Example:
232
+
233
+ $ yri YARD::Handlers::Base#register
234
+ $ yri File.relative_path
235
+
236
+ Note that class methods must not be referred to with the "::" namespace
237
+ separator. Only modules, classes and constants should use "::".
238
+
239
+ You can also do lookups on any installed gems. Just make sure to build the
240
+ .yardoc databases for installed gems with:
241
+
242
+ $ sudo yard gems
243
+
244
+ If you don't have sudo access, it will write these files to your `~/.yard`
245
+ directory. `yri` will also cache lookups there.
246
+
247
+ **4. `yard server` Documentation Server**
248
+
249
+ The `yard server` command serves documentation for a local project or all installed
250
+ RubyGems. To serve documentation for a project you are working on, simply run:
251
+
252
+ $ yard server
253
+
254
+ And the project inside the current directory will be parsed (if the source has
255
+ not yet been scanned by YARD) and served at [http://localhost:8808](http://localhost:8808).
256
+
257
+ ### Live Reloading
258
+
259
+ If you want to serve documentation on a project while you document it so that
260
+ you can preview the results, simply pass `--reload` (`-r`) to the above command
261
+ and YARD will reload any changed files on each request. This will allow you to
262
+ change any documentation in the source and refresh to see the new contents.
263
+
264
+ ### Serving Gems
265
+
266
+ To serve documentation for all installed gems, call:
267
+
268
+ $ yard server --gems
269
+
270
+ This will also automatically build documentation for any gems that have not
271
+ been previously scanned. Note that in this case there will be a slight delay
272
+ between the first request of a newly parsed gem.
273
+
274
+
275
+ **5. `yard graph` Graphviz Generator**
276
+
277
+ You can use `yard-graph` to generate dot graphs of your code. This, of course,
278
+ requires [Graphviz](http://www.graphviz.org) and the `dot` binary. By default
279
+ this will generate a graph of the classes and modules in the best UML2 notation
280
+ that Graphviz can support, but without any methods listed. With the `--full`
281
+ option, methods and attributes will be listed. There is also a `--dependencies`
282
+ option to show mixin inclusions. You can output to stdout or a file, or pipe directly
283
+ to `dot`. The same public, protected and private visibility rules apply to yard-graph.
284
+ More options can be seen by typing `yard-graph --help`, but here is an example:
285
+
286
+ $ yard graph --protected --full --dependencies
287
+
288
+
289
+ Changelog
290
+ ---------
291
+
292
+ - **December.2.11**: 0.7.4 release
293
+ - Redcarpet is now the default Markdown formatting library. GFM now works out-of-box (#404)
294
+ - Fix server side searching for elements that are marked private (#420)
295
+ - Add 'textile_strict' and 'pre' markup types, reorganize text and none (#416)
296
+ - Improve encoding line detection (#415)
297
+ - Add support for `rb_define_alias` in CRuby code (#413)
298
+ - Fix rendering of some keywords in source view (#410)
299
+ - Add support for RDoc 3.10+ (#406, #407)
300
+ - Fix typewriter text being processed in code blocks (#403)
301
+ - Improve support for has_rdoc in RubyGems 1.8.x (#401)
302
+ - See the {file:docs/WhatsNew.md} document for details on added features
303
+
304
+ - **October.15.11**: 0.7.3 release
305
+ - Improve support for parsing under Ruby 1.9.2p290 and 1.9.3 (#365, #370)
306
+ - Add support for SWIG generated CRuby code (#369)
307
+ - Add support for `rb_define_attr` calls in CRuby code (#362)
308
+ - Handle file pointers in CRuby code (#358)
309
+
310
+ - **June.14.11**: 0.7.2 release
311
+ - Fix `yard --help` not showing proper output
312
+ - YARD now expands path to `.yardoc` file in daemon mode for server (#328)
313
+ - Fix `@overload` tag linking to wrong method (#330)
314
+ - Fix incorrect return type when using `@macro` (#334)
315
+ - YARD now requires 'thread' to support RubyGems 1.7+ (#338)
316
+ - Fix bug in constant documentation when using `%w()` (#348)
317
+ - Fix YARD style URL links when using autolinking markdown (#353)
318
+
319
+ - **May.18.11**: 0.7.1 release
320
+ - Fixes a bug in `yard server` not displaying class list properly.
321
+
322
+ - **May.17.11**: 0.7.0 release
323
+ - See the {file:docs/WhatsNew.md} document for details on added features
324
+ - Make sure that Docstring#line_range is filled when possible (#243)
325
+ - Set #verifier in YardocTask (#282)
326
+ - Parse BOM in UTF-8 files (#288)
327
+ - Fix instance attributes not showing up in method list (#302)
328
+ - Fix rendering of %w() literals in constants (#306)
329
+ - Ignore keyboard shortcuts when an input is active (#312)
330
+ - And more...
331
+
332
+ - **April.14.11**: 0.6.8 release
333
+ - Fix regression in RDoc 1.x markup loading
334
+ - Fix regression in loading of markup libraries for `yard server`
335
+
336
+ - **April.6.11**: 0.6.7 release
337
+ - Fix has_rdoc gem specification issue with new RubyGems plugin API (oops!)
338
+
339
+ - **April.6.11**: 0.6.6 release
340
+ - Fix error message when RDoc is not present (#270)
341
+ - Add markup type 'none' to perform basic HTML translation (fallback when RDoc is not present)
342
+ - Add support for RubyGems 1.7.x (#272)
343
+ - Fix rendering of `{url description}` syntax when description contains newline
344
+
345
+ - **March.13.11**: 0.6.5 release
346
+ - Support `ripper` gem in Ruby 1.8.7
347
+ - Upgrade jQuery to 1.5.1
348
+ - Fix handling of alias statements with quoted symbols (#262)
349
+ - Add CSS styles (#260)
350
+ - Unhandled exception in YARD::Handlers::Ruby::MixinHandler indexing documentation for eventmachine (#248)
351
+ - Splice any alias references on method re-definitions into separate methods (#247)
352
+ - Fix "yard graph" (#245)
353
+ - Don't process ++ typewriter text inside of HTML attributes (#244)
354
+ - Prioritize loading of Kramdown before Maruku (#241)
355
+ - Skip shebang encoding in docstrings (#238)
356
+ - Fix truncation of references in @deprecated (#232)
357
+ - Show @api private note when no other tags are present (#231)
358
+ - Detect docstrings starting with "##" as `Docstring#hash_flag` (#230)
359
+ - Remove trailing whitespace from freeform tags (#229)
360
+ - Fix line through for deprecated methods (#225)
361
+ - Mistake in Tags.md (#223)
362
+ - Improve database storage by being more efficient with filesystem usage (#222)
363
+ - Make Registry thread local (#221)
364
+ - Support `private_constant` class method for 1.9.3 (#219)
365
+ - Do not assume RDoc is installed (#214)
366
+
367
+ - **December.21.10**: 0.6.4 release
368
+ - Fix yri tool crashing with new Config class (gh-217)
369
+ - Fix support for ::TopLevelConstants (gh-216)
370
+ - YARD's test suite is now RSpec2 compatible (gh-215)
371
+ - Improved documentation for YARD::Server features (gh-207)
372
+ - Fix displaying of collaped method summary lists (gh-204)
373
+ - Fix automatic loading of markup providers (gh-206)
374
+ - Fix keyboard shortcuts for Chrome (gh-203)
375
+ - Disallow `extend self` inside of a class (gh-202)
376
+ - Constants now recognized in C extensions (gh-201)
377
+
378
+ - **November.21.10**: 0.6.3 release
379
+ - Fixed regression that caused `yardoc --markup` to silently exit
380
+
381
+ - **November.15.10**: 0.6.2 release
382
+ - **Plugins no longer automatically load, use `--plugin` to load a plugin**
383
+ - Added YARD::Config and ~/.yard/config YAML configuration file
384
+ - Added `yard config` command to view/edit YARD configuration file
385
+ - Fixes for YARD in 1.8.6 (gh-178)
386
+ - Various HTML template adjustments and fixes (gh-198,199,200)
387
+ - Improved `yard server -m` multi-project stability (gh-193)
388
+ - Fixed handling of `yardoc --no-private` with missing class definitions (gh-197)
389
+ - Added support for constants defined in C extensions (gh-177)
390
+ - Added support for Structs defined as "Klass = Struct.new(...)" (gh-187)
391
+ - Improved parsing support for third-party gems (gh-174,180)
392
+ - Improved support for JRuby 1.6.4+. YARD now passes all specs in JRuby (gh-185)
393
+ - Improved YARD documentation (gh-172,191,196)
394
+
395
+ - **September.06.10**: 0.6.1 release
396
+ - Fixed TOC showing on top of class/method list in no-frames view
397
+ - A message now displays when running `yard server` with Rack/Mongrel installed
398
+ - Improved performance of JS inline search for large class/method lists
399
+ - Improved link titles for relative object links
400
+ - Removed `String#camelcase` and `String#underscore` for better Rails compat.
401
+ - Fixed support for loading .yardoc files under Windows
402
+ - Fixed inheritance tree arrows not displaying in certain environments
403
+
404
+ - **August.29.10**: 0.6.0 release
405
+ - Added dynamic local documentation server
406
+ - Added @group/@endgroup declarations to organize methods into groups
407
+ - Added `yard` executable to serve as main CLI tool with pluggable commands
408
+ - Added `--asset` switch to `yardoc` to copy files/dirs to output dir
409
+ - Added ability to register/manipulate tags via CLI (`--tag`, etc.)
410
+ - Added `yard diff` command
411
+ - Added statistics to `yardoc` output (and `yard stats` command)
412
+ - Added Javascript generated Table of Contents to file pages
413
+ - Updated various APIs
414
+ - Removed `yard-graph` executable
415
+ - See more changes in the {file:docs/WhatsNew.md what's new document}
416
+
417
+ - **June.22.10**: 0.5.8 release
418
+ - Merge fix from 0.6 branch for --no-private visibility checking
419
+
420
+ - **June.21.10**: 0.5.7 release
421
+ - Fixed visibility flag parsing in `yardoc`
422
+ - Updated Parser Architecture documentation with new SourceParser API
423
+ - Improved Registry documentation for new load commands
424
+ - Fix loading of .yardoc file as cache (and preserving aliases)
425
+ - Fix "lib" directory missing when running YARD on installed gems
426
+
427
+ - **June.12.10**: 0.5.6 release
428
+ - Bug fixes for RubyGems plugin, `has_rdoc=false` should now work
429
+ - New API for registering custom parsers. See {file:docs/WhatsNew.md}
430
+
431
+ - **May.22.10**: 0.5.5 release
432
+ - Various bug fixes
433
+
434
+ - **March.22.10**: 0.5.4 release
435
+ - See {file:docs/WhatsNew.md what's new document} for changes
436
+
437
+ - **January.11.10**: 0.5.3 release
438
+ - See {file:docs/WhatsNew.md what's new document} for changes
439
+
440
+ - **December.16.09**: 0.5.2 release
441
+ - See {file:docs/WhatsNew.md what's new document} for changes
442
+
443
+ - **December.15.09**: 0.5.1 release
444
+ - See {file:docs/WhatsNew.md what's new document} for changes
445
+
446
+ - **December.13.09**: 0.5.0 release
447
+ - See {file:docs/WhatsNew.md what's new document} for changes
448
+
449
+ - **November.15.09**: 0.4.0 release
450
+ - Added new templating engine based on [tadpole](http://github.com/lsegal/tadpole)
451
+ - Added YARD queries (`--query` CLI argument to yardoc)
452
+ - Greatly expanded YARD documentation
453
+ - Added plugin support
454
+ - New `@abstract` and `@private` tags
455
+ - Changed default rake task to `rake yard`
456
+ - Read about changes in {file:docs/WhatsNew.md}
457
+
458
+ - **August.13.09**: 0.2.3.5 release
459
+ - Minor bug fixes.
460
+
461
+ - **August.07.09**: 0.2.3.4 release
462
+ - Minor bug fixes.
463
+
464
+ - **July.26.09**: 0.2.3.3 release
465
+ - Minor bug fixes.
466
+
467
+ - **July.06.09**: 0.2.3.2 release
468
+ - Fix Textile hard-break issues
469
+ - Add description for @see tag to use as link title in HTML docs.
470
+ - Add --title CLI option to specify a title for HTML doc files.
471
+ - Add custom.css file that can be overridden with various custom
472
+ styelsheet declarations. To use this, simply add `default/fulldoc/html/custom.css`
473
+ inside your code directory and use the `-t` template directory yardoc CLI
474
+ option to point to that template directory (the dir holding 'default').
475
+ - Add support in `yardoc` CLI to specify extra files (formerly --files)
476
+ by appending "- extra files here" after regular source files. Example:
477
+
478
+ yardoc --private lib/**/*.rb - FAQ LICENSE
479
+
480
+ - **Jun.13.09**: 0.2.3.1 release.
481
+ - Add a RubyGems 1.3.2+ plugin to generate YARD documentation instead of
482
+ RDoc. To take advantage of this plugin, set `has_rdoc = 'yard'` in your
483
+ .gemspec file.
484
+
485
+ - **Jun.07.09**: 0.2.3 release. See the {file:docs/WhatsNew.md} file for a
486
+ list of important new features.
487
+
488
+ - **Jun.16.08**: 0.2.2 release. This is the largest changset since yard's
489
+ conception and involves a complete overhaul of the parser and API to make it
490
+ more robust and far easier to extend and use for the developer.
491
+
492
+ - **Feb.20.08**: 0.2.1 release.
493
+
494
+ - **Feb.24.07**: Released 0.1a experimental version for testing. The goal here is
495
+ to get people testing YARD on their code because there are too many possible
496
+ code styles to fit into a sane amount of test cases. It also demonstrates the
497
+ power of YARD and what to expect from the syntax (Yardoc style meta tags).
498
+
499
+
500
+ Contributors
501
+ ------------
502
+
503
+ Special thanks to all contributors for submitting patches. A full list of
504
+ contributors including their patches can be found at:
505
+
506
+ http://github.com/lsegal/yard/contributors
507
+
508
+ Copyright
509
+ ---------
510
+
511
+ YARD &copy; 2007-2011 by [Loren Segal](mailto:lsegal@soen.ca). YARD is
512
+ licensed under the MIT license except for some files which come from the
513
+ RDoc/Ruby distributions. Please see the {file:LICENSE} and {file:LEGAL}
514
+ documents for more information.