yard 0.7.5 → 0.8.0
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of yard might be problematic. Click here for more details.
- data/.yardopts +10 -2
- data/ChangeLog +1263 -38
- data/LEGAL +5 -5
- data/LICENSE +1 -1
- data/README.md +91 -82
- data/Rakefile +6 -6
- data/benchmarks/builtins_vs_eval.rb +1 -1
- data/benchmarks/erb_vs_erubis.rb +4 -4
- data/benchmarks/generation.rb +5 -5
- data/benchmarks/parsing.rb +2 -2
- data/benchmarks/registry_store_types.rb +48 -0
- data/bin/yard +9 -1
- data/bin/yardoc +9 -1
- data/bin/yri +10 -2
- data/docs/CodeObjects.md +10 -10
- data/docs/GettingStarted.md +85 -83
- data/docs/Handlers.md +21 -21
- data/docs/Overview.md +7 -7
- data/docs/Parser.md +30 -30
- data/docs/Tags.md +250 -554
- data/docs/TagsArch.md +123 -0
- data/docs/Templates.md +58 -80
- data/docs/WhatsNew.md +378 -133
- data/docs/templates/default/fulldoc/html/full_list_tag.erb +7 -0
- data/docs/templates/default/fulldoc/html/setup.rb +6 -0
- data/docs/templates/default/layout/html/setup.rb +8 -0
- data/docs/templates/default/layout/html/tag_list.erb +11 -0
- data/docs/templates/default/yard_tags/html/list.erb +18 -0
- data/docs/templates/default/yard_tags/html/setup.rb +27 -0
- data/docs/templates/plugin.rb +65 -0
- data/lib/yard.rb +1 -10
- data/lib/yard/autoload.rb +75 -27
- data/lib/yard/cli/command.rb +5 -2
- data/lib/yard/cli/command_parser.rb +3 -2
- data/lib/yard/cli/diff.rb +1 -1
- data/lib/yard/cli/i18n.rb +69 -0
- data/lib/yard/cli/list.rb +1 -1
- data/lib/yard/cli/server.rb +30 -7
- data/lib/yard/cli/stats.rb +5 -6
- data/lib/yard/cli/yardoc.rb +95 -45
- data/lib/yard/cli/yri.rb +24 -3
- data/lib/yard/code_objects/base.rb +35 -4
- data/lib/yard/code_objects/extra_file_object.rb +1 -1
- data/lib/yard/code_objects/macro_object.rb +56 -99
- data/lib/yard/code_objects/method_object.rb +44 -6
- data/lib/yard/config.rb +18 -8
- data/lib/yard/core_ext/symbol_hash.rb +1 -1
- data/lib/yard/docstring.rb +45 -85
- data/lib/yard/docstring_parser.rb +269 -0
- data/lib/yard/handlers/base.rb +129 -118
- data/lib/yard/handlers/c/alias_handler.rb +15 -0
- data/lib/yard/handlers/c/attribute_handler.rb +13 -0
- data/lib/yard/handlers/c/base.rb +110 -0
- data/lib/yard/handlers/c/class_handler.rb +26 -0
- data/lib/yard/handlers/c/constant_handler.rb +12 -0
- data/lib/yard/handlers/c/handler_methods.rb +165 -0
- data/lib/yard/handlers/c/init_handler.rb +16 -0
- data/lib/yard/handlers/c/method_handler.rb +35 -0
- data/lib/yard/handlers/c/mixin_handler.rb +13 -0
- data/lib/yard/handlers/c/module_handler.rb +16 -0
- data/lib/yard/handlers/c/override_comment_handler.rb +22 -0
- data/lib/yard/handlers/c/path_handler.rb +10 -0
- data/lib/yard/handlers/c/struct_handler.rb +12 -0
- data/lib/yard/handlers/c/symbol_handler.rb +7 -0
- data/lib/yard/handlers/processor.rb +41 -30
- data/lib/yard/handlers/ruby/alias_handler.rb +0 -2
- data/lib/yard/handlers/ruby/attribute_handler.rb +16 -17
- data/lib/yard/handlers/ruby/base.rb +10 -6
- data/lib/yard/handlers/ruby/comment_handler.rb +9 -0
- data/lib/yard/handlers/ruby/dsl_handler.rb +14 -0
- data/lib/yard/handlers/ruby/dsl_handler_methods.rb +71 -0
- data/lib/yard/handlers/ruby/legacy/alias_handler.rb +0 -3
- data/lib/yard/handlers/ruby/legacy/attribute_handler.rb +16 -17
- data/lib/yard/handlers/ruby/legacy/base.rb +28 -6
- data/lib/yard/handlers/ruby/legacy/comment_handler.rb +9 -0
- data/lib/yard/handlers/ruby/legacy/dsl_handler.rb +16 -0
- data/lib/yard/handlers/ruby/legacy/method_handler.rb +0 -2
- data/lib/yard/handlers/ruby/legacy/mixin_handler.rb +1 -1
- data/lib/yard/handlers/ruby/legacy/module_function_handler.rb +18 -0
- data/lib/yard/handlers/ruby/method_handler.rb +10 -15
- data/lib/yard/handlers/ruby/mixin_handler.rb +1 -1
- data/lib/yard/handlers/ruby/module_function_handler.rb +26 -0
- data/lib/yard/handlers/ruby/struct_handler_methods.rb +3 -2
- data/lib/yard/i18n/pot_generator.rb +281 -0
- data/lib/yard/i18n/text.rb +72 -0
- data/lib/yard/logging.rb +3 -7
- data/lib/yard/options.rb +216 -0
- data/lib/yard/parser/c/c_parser.rb +225 -0
- data/lib/yard/parser/c/comment_parser.rb +131 -0
- data/lib/yard/parser/c/statement.rb +63 -0
- data/lib/yard/parser/ruby/ast_node.rb +91 -1
- data/lib/yard/parser/ruby/legacy/ruby_parser.rb +1 -0
- data/lib/yard/parser/ruby/legacy/statement.rb +7 -2
- data/lib/yard/parser/ruby/legacy/statement_list.rb +13 -22
- data/lib/yard/parser/ruby/ruby_parser.rb +87 -26
- data/lib/yard/parser/source_parser.rb +89 -88
- data/lib/yard/rake/yardoc_task.rb +1 -1
- data/lib/yard/registry.rb +21 -10
- data/lib/yard/registry_store.rb +48 -0
- data/lib/yard/serializers/file_system_serializer.rb +18 -20
- data/lib/yard/serializers/yardoc_serializer.rb +1 -0
- data/lib/yard/server/adapter.rb +2 -2
- data/lib/yard/server/commands/base.rb +1 -1
- data/lib/yard/server/commands/display_object_command.rb +13 -6
- data/lib/yard/server/commands/frames_command.rb +4 -21
- data/lib/yard/server/commands/library_command.rb +57 -11
- data/lib/yard/server/commands/list_command.rb +10 -34
- data/lib/yard/server/commands/search_command.rb +8 -2
- data/lib/yard/server/doc_server_helper.rb +34 -0
- data/lib/yard/server/rack_adapter.rb +5 -1
- data/lib/yard/server/router.rb +4 -10
- data/lib/yard/server/static_caching.rb +2 -2
- data/lib/yard/server/templates/default/fulldoc/html/css/custom.css +2 -2
- data/lib/yard/server/templates/default/fulldoc/html/js/live.js +0 -15
- data/lib/yard/server/templates/default/layout/html/breadcrumb.erb +3 -3
- data/lib/yard/server/templates/default/layout/html/script_setup.erb +8 -0
- data/lib/yard/server/templates/doc_server/processing/html/processing.erb +1 -1
- data/lib/yard/server/templates/doc_server/search/html/setup.rb +1 -1
- data/lib/yard/tags/default_factory.rb +31 -4
- data/lib/yard/tags/directives.rb +593 -0
- data/lib/yard/tags/library.rb +437 -35
- data/lib/yard/templates/engine.rb +17 -12
- data/lib/yard/templates/helpers/base_helper.rb +8 -2
- data/lib/yard/templates/helpers/html_helper.rb +57 -14
- data/lib/yard/templates/helpers/markup/rdoc_markup.rb +1 -1
- data/lib/yard/templates/helpers/markup_helper.rb +9 -9
- data/lib/yard/templates/helpers/text_helper.rb +2 -2
- data/lib/yard/templates/template.rb +42 -13
- data/lib/yard/templates/template_options.rb +81 -0
- data/spec/cli/command_parser_spec.rb +4 -4
- data/spec/cli/command_spec.rb +3 -3
- data/spec/cli/config_spec.rb +13 -13
- data/spec/cli/diff_spec.rb +13 -10
- data/spec/cli/gems_spec.rb +12 -12
- data/spec/cli/help_spec.rb +2 -2
- data/spec/cli/i18n_spec.rb +111 -0
- data/spec/cli/server_spec.rb +66 -18
- data/spec/cli/stats_spec.rb +15 -15
- data/spec/cli/yardoc_spec.rb +124 -97
- data/spec/cli/yri_spec.rb +14 -12
- data/spec/code_objects/base_spec.rb +104 -46
- data/spec/code_objects/class_object_spec.rb +33 -33
- data/spec/code_objects/code_object_list_spec.rb +5 -5
- data/spec/code_objects/constants_spec.rb +4 -3
- data/spec/code_objects/extra_file_object_spec.rb +19 -19
- data/spec/code_objects/macro_object_spec.rb +31 -37
- data/spec/code_objects/method_object_spec.rb +46 -23
- data/spec/code_objects/module_object_spec.rb +16 -16
- data/spec/code_objects/namespace_object_spec.rb +6 -6
- data/spec/code_objects/proxy_spec.rb +19 -19
- data/spec/config_spec.rb +33 -24
- data/spec/core_ext/array_spec.rb +1 -1
- data/spec/core_ext/file_spec.rb +8 -8
- data/spec/core_ext/hash_spec.rb +1 -1
- data/spec/core_ext/insertion_spec.rb +3 -3
- data/spec/core_ext/module_spec.rb +1 -1
- data/spec/core_ext/string_spec.rb +6 -6
- data/spec/core_ext/symbol_hash_spec.rb +11 -11
- data/spec/docstring_parser_spec.rb +207 -0
- data/spec/docstring_spec.rb +33 -146
- data/spec/handlers/alias_handler_spec.rb +14 -14
- data/spec/handlers/attribute_handler_spec.rb +20 -20
- data/spec/handlers/base_spec.rb +16 -16
- data/spec/handlers/c/alias_handler_spec.rb +33 -0
- data/spec/handlers/c/attribute_handler_spec.rb +40 -0
- data/spec/handlers/c/class_handler_spec.rb +64 -0
- data/spec/handlers/c/constant_handler_spec.rb +68 -0
- data/spec/handlers/c/init_handler_spec.rb +36 -0
- data/spec/handlers/c/method_handler_spec.rb +228 -0
- data/spec/handlers/c/mixin_handler_spec.rb +27 -0
- data/spec/handlers/c/module_handler_spec.rb +38 -0
- data/spec/handlers/c/override_comment_handler_spec.rb +43 -0
- data/spec/handlers/c/path_handler_spec.rb +35 -0
- data/spec/handlers/c/spec_helper.rb +11 -0
- data/spec/handlers/c/struct_handler_spec.rb +15 -0
- data/spec/handlers/class_condition_handler_spec.rb +10 -10
- data/spec/handlers/class_handler_spec.rb +38 -38
- data/spec/handlers/class_variable_handler_spec.rb +1 -1
- data/spec/handlers/constant_handler_spec.rb +7 -7
- data/spec/handlers/{macro_handler_spec.rb → dsl_handler_spec.rb} +72 -53
- data/spec/handlers/examples/alias_handler_001.rb.txt +5 -5
- data/spec/handlers/examples/class_condition_handler_001.rb.txt +9 -9
- data/spec/handlers/examples/class_handler_001.rb.txt +1 -1
- data/spec/handlers/examples/dsl_handler_001.rb.txt +110 -0
- data/spec/handlers/examples/exception_handler_001.rb.txt +14 -14
- data/spec/handlers/examples/method_condition_handler_001.rb.txt +2 -2
- data/spec/handlers/examples/method_handler_001.rb.txt +16 -16
- data/spec/handlers/examples/mixin_handler_001.rb.txt +8 -4
- data/spec/handlers/examples/private_constant_handler_001.rb.txt +1 -1
- data/spec/handlers/examples/visibility_handler_001.rb.txt +3 -3
- data/spec/handlers/examples/yield_handler_001.rb.txt +13 -14
- data/spec/handlers/exception_handler_spec.rb +9 -9
- data/spec/handlers/extend_handler_spec.rb +2 -2
- data/spec/handlers/legacy_base_spec.rb +34 -34
- data/spec/handlers/method_condition_handler_spec.rb +2 -2
- data/spec/handlers/method_handler_spec.rb +33 -33
- data/spec/handlers/mixin_handler_spec.rb +13 -9
- data/spec/handlers/module_function_handler_spec.rb +82 -0
- data/spec/handlers/module_handler_spec.rb +6 -6
- data/spec/handlers/private_constant_handler_spec.rb +3 -3
- data/spec/handlers/processor_spec.rb +5 -5
- data/spec/handlers/ruby/base_spec.rb +10 -6
- data/spec/handlers/ruby/legacy/base_spec.rb +11 -7
- data/spec/handlers/spec_helper.rb +2 -3
- data/spec/handlers/visibility_handler_spec.rb +6 -6
- data/spec/handlers/yield_handler_spec.rb +8 -8
- data/spec/i18n/pot_generator_spec.rb +244 -0
- data/spec/i18n/text_spec.rb +69 -0
- data/spec/options_spec.rb +160 -0
- data/spec/parser/base_spec.rb +3 -3
- data/spec/parser/c_parser_spec.rb +31 -257
- data/spec/parser/examples/array.c.txt +187 -187
- data/spec/parser/examples/extrafile.c.txt +1 -1
- data/spec/parser/examples/override.c.txt +1 -1
- data/spec/parser/ruby/ast_node_spec.rb +1 -1
- data/spec/parser/ruby/legacy/statement_list_spec.rb +24 -24
- data/spec/parser/ruby/legacy/token_list_spec.rb +7 -7
- data/spec/parser/ruby/ruby_parser_spec.rb +56 -34
- data/spec/parser/source_parser_spec.rb +125 -65
- data/spec/parser/tag_parsing_spec.rb +4 -4
- data/spec/rake/yardoc_task_spec.rb +10 -8
- data/spec/registry_spec.rb +65 -36
- data/spec/registry_store_spec.rb +90 -40
- data/spec/serializers/file_system_serializer_spec.rb +12 -12
- data/spec/serializers/yardoc_serializer_spec.rb +2 -2
- data/spec/server/adapter_spec.rb +3 -3
- data/spec/server/commands/base_spec.rb +8 -8
- data/spec/server/commands/library_command_spec.rb +3 -3
- data/spec/server/commands/static_file_command_spec.rb +7 -7
- data/spec/server/doc_server_helper_spec.rb +1 -1
- data/spec/server/doc_server_serializer_spec.rb +6 -6
- data/spec/server/rack_adapter_spec.rb +3 -3
- data/spec/server/router_spec.rb +19 -19
- data/spec/server/static_caching_spec.rb +4 -4
- data/spec/spec_helper.rb +7 -7
- data/spec/tags/default_factory_spec.rb +24 -16
- data/spec/tags/directives_spec.rb +422 -0
- data/spec/tags/library_spec.rb +15 -4
- data/spec/tags/overload_tag_spec.rb +6 -6
- data/spec/tags/ref_tag_list_spec.rb +8 -8
- data/spec/templates/class_spec.rb +7 -7
- data/spec/templates/constant_spec.rb +7 -7
- data/spec/templates/engine_spec.rb +28 -36
- data/spec/templates/examples/class001.html +108 -108
- data/spec/templates/examples/class002.html +17 -17
- data/spec/templates/examples/constant001.txt +1 -1
- data/spec/templates/examples/method001.html +45 -45
- data/spec/templates/examples/method002.html +25 -25
- data/spec/templates/examples/method003.html +60 -60
- data/spec/templates/examples/method004.html +7 -7
- data/spec/templates/examples/method005.html +28 -28
- data/spec/templates/examples/module001.html +321 -321
- data/spec/templates/examples/module001.txt +1 -1
- data/spec/templates/examples/module002.html +130 -130
- data/spec/templates/examples/module003.html +74 -74
- data/spec/templates/examples/module004.html +388 -0
- data/spec/templates/helpers/base_helper_spec.rb +32 -32
- data/spec/templates/helpers/html_helper_spec.rb +87 -68
- data/spec/templates/helpers/html_syntax_highlight_helper_spec.rb +9 -9
- data/spec/templates/helpers/markup/rdoc_markup_spec.rb +16 -16
- data/spec/templates/helpers/markup_helper_spec.rb +31 -28
- data/spec/templates/helpers/method_helper_spec.rb +7 -7
- data/spec/templates/helpers/shared_signature_examples.rb +9 -7
- data/spec/templates/helpers/text_helper_spec.rb +3 -3
- data/spec/templates/method_spec.rb +13 -13
- data/spec/templates/module_spec.rb +70 -24
- data/spec/templates/onefile_spec.rb +32 -15
- data/spec/templates/section_spec.rb +23 -23
- data/spec/templates/spec_helper.rb +31 -1
- data/spec/templates/tag_spec.rb +5 -5
- data/spec/templates/template_spec.rb +54 -46
- data/spec/verifier_spec.rb +5 -5
- data/templates/default/class/setup.rb +2 -2
- data/templates/default/docstring/html/abstract.erb +1 -1
- data/templates/default/docstring/html/note.erb +1 -1
- data/templates/default/docstring/html/private.erb +1 -1
- data/templates/default/docstring/html/todo.erb +1 -1
- data/templates/default/docstring/setup.rb +2 -2
- data/templates/default/fulldoc/html/css/full_list.css +4 -2
- data/templates/default/fulldoc/html/css/style.css +50 -44
- data/templates/default/fulldoc/html/frames.erb +21 -6
- data/templates/default/fulldoc/html/full_list.erb +5 -3
- data/templates/default/fulldoc/html/{full_list_files.erb → full_list_file.erb} +0 -0
- data/templates/default/fulldoc/html/js/app.js +29 -26
- data/templates/default/fulldoc/html/js/full_list.js +9 -9
- data/templates/default/fulldoc/html/js/jquery.js +4 -16
- data/templates/default/fulldoc/html/setup.rb +42 -38
- data/templates/default/layout/dot/header.erb +1 -1
- data/templates/default/layout/html/breadcrumb.erb +6 -6
- data/templates/default/layout/html/files.erb +1 -1
- data/templates/default/layout/html/footer.erb +1 -1
- data/templates/default/layout/html/headers.erb +3 -6
- data/templates/default/layout/html/index.erb +1 -1
- data/templates/default/layout/html/layout.erb +3 -7
- data/templates/default/layout/html/objects.erb +1 -1
- data/templates/default/layout/html/script_setup.erb +5 -0
- data/templates/default/layout/html/search.erb +4 -1
- data/templates/default/layout/html/setup.rb +8 -8
- data/templates/default/method_details/html/method_signature.erb +10 -3
- data/templates/default/method_details/setup.rb +1 -0
- data/templates/default/module/dot/info.erb +1 -1
- data/templates/default/module/dot/setup.rb +2 -2
- data/templates/default/module/html/attribute_details.erb +1 -1
- data/templates/default/module/html/children.erb +1 -1
- data/templates/default/module/html/defines.erb +1 -1
- data/templates/default/module/html/inherited_methods.erb +5 -4
- data/templates/default/module/html/item_summary.erb +15 -5
- data/templates/default/module/html/method_details_list.erb +2 -2
- data/templates/default/module/setup.rb +25 -12
- data/templates/default/module/text/setup.rb +1 -1
- data/templates/default/onefile/html/layout.erb +1 -1
- data/templates/default/onefile/html/setup.rb +2 -2
- data/templates/default/tags/html/example.erb +4 -2
- data/templates/default/tags/html/option.erb +1 -1
- data/templates/default/tags/html/overload.erb +1 -1
- data/templates/default/tags/html/see.erb +1 -1
- data/templates/default/tags/html/tag.erb +1 -1
- data/templates/default/tags/setup.rb +4 -3
- data/templates/guide/fulldoc/html/css/style.css +8 -8
- data/templates/guide/fulldoc/html/js/app.js +6 -6
- data/templates/guide/fulldoc/html/setup.rb +12 -12
- data/templates/guide/layout/html/layout.erb +11 -11
- data/templates/guide/layout/html/setup.rb +9 -9
- data/templates/guide/method/html/header.erb +2 -2
- data/templates/guide/method/html/setup.rb +1 -1
- metadata +68 -18
- data/bin/yard-graph +0 -4
- data/bin/yard-server +0 -4
- data/docs/Glossary.md +0 -12
- data/lib/yard/handlers/ruby/legacy/macro_handler.rb +0 -39
- data/lib/yard/handlers/ruby/macro_handler.rb +0 -40
- data/lib/yard/handlers/ruby/macro_handler_methods.rb +0 -131
- data/lib/yard/parser/c_parser.rb +0 -497
- data/lib/yard/server/templates/default/layout/html/headers.erb +0 -16
- data/lib/yard/server/templates/doc_server/frames/html/frames.erb +0 -13
- data/lib/yard/server/templates/doc_server/frames/html/setup.rb +0 -3
- data/lib/yard/server/templates/doc_server/full_list/html/full_list.erb +0 -34
- data/lib/yard/server/templates/doc_server/full_list/html/setup.rb +0 -20
- data/spec/handlers/examples/macro_handler_001.rb.txt +0 -83
data/LEGAL
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
LEGAL NOTICE INFORMATION
|
2
2
|
------------------------
|
3
3
|
|
4
|
-
All the files in this distribution are covered under either the MIT
|
4
|
+
All the files in this distribution are covered under either the MIT
|
5
5
|
license (see the file LICENSE) except some files mentioned below.
|
6
6
|
|
7
7
|
lib/parser/c_parser.rb:
|
8
8
|
|
9
9
|
This file includes code from the RDoc distribution. It is under the Ruby
|
10
10
|
license but adds the following copyright:
|
11
|
-
|
12
|
-
RDoc is copyrighted free software by Dave Thomas, Eric Hodel, and others.
|
11
|
+
|
12
|
+
RDoc is copyrighted free software by Dave Thomas, Eric Hodel, and others.
|
13
13
|
It is licensed under the same terms as Ruby
|
14
14
|
|
15
15
|
lib/parser/ruby/legacy/ruby_lex.rb:
|
@@ -62,9 +62,9 @@ lib/parser/ruby/legacy/ruby_lex.rb:
|
|
62
62
|
For the list of those files and their copying conditions, see the
|
63
63
|
file LEGAL.
|
64
64
|
|
65
|
-
5. The scripts and library files supplied as input to or produced as
|
65
|
+
5. The scripts and library files supplied as input to or produced as
|
66
66
|
output from the software do not automatically fall under the
|
67
|
-
copyright of the software, but belong to whomever generated them,
|
67
|
+
copyright of the software, but belong to whomever generated them,
|
68
68
|
and may be sold commercially, and may be aggregated with this
|
69
69
|
software.
|
70
70
|
|
data/LICENSE
CHANGED
data/README.md
CHANGED
@@ -8,8 +8,8 @@ YARD: Yay! A Ruby Documentation Tool
|
|
8
8
|
**Contributors**: See Contributors section below
|
9
9
|
**Copyright**: 2007-2012
|
10
10
|
**License**: MIT License
|
11
|
-
**Latest Version**: 0.
|
12
|
-
**Release Date**:
|
11
|
+
**Latest Version**: 0.8.0 (codename "Shave It")
|
12
|
+
**Release Date**: April 30th 2012
|
13
13
|
|
14
14
|
Synopsis
|
15
15
|
--------
|
@@ -23,7 +23,7 @@ summary of some of YARD's notable features.
|
|
23
23
|
|
24
24
|
Feature List
|
25
25
|
------------
|
26
|
-
|
26
|
+
|
27
27
|
**1. RDoc/SimpleMarkup Formatting Compatibility**: YARD is made to be compatible
|
28
28
|
with RDoc formatting. In fact, YARD does no processing on RDoc documentation
|
29
29
|
strings, and leaves this up to the output generation tool to decide how to
|
@@ -34,8 +34,8 @@ YARD uses a '@tag' style definition syntax for meta tags alongside regular code
|
|
34
34
|
documentation. These tags should be able to happily sit side by side RDoc formatted
|
35
35
|
documentation, but provide a much more consistent and usable way to describe
|
36
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
|
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
39
|
consistently) organized during the output generation phase. You can find a list
|
40
40
|
of tags in the {file:docs/Tags.md#taglist Tags.md} file.
|
41
41
|
|
@@ -46,15 +46,15 @@ describing this data in the body of the description, a developer may formally
|
|
46
46
|
declare the parameter or return type(s) in a single line. Consider the
|
47
47
|
following method documented with YARD formatting:
|
48
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
|
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
56
|
end
|
57
|
-
|
57
|
+
|
58
58
|
With the above @param tag, we learn that the contents parameter can either be
|
59
59
|
a String or any object that responds to the 'read' method, which is more
|
60
60
|
powerful than the textual description, which says it should be an IO object.
|
@@ -62,16 +62,16 @@ This also informs the developer that they should expect to receive a String
|
|
62
62
|
object returned by the method, and although this may be obvious for a
|
63
63
|
'reverse' method, it becomes very useful when the method name may not be as
|
64
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
|
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
68
|
need to document the following code:
|
69
|
-
|
69
|
+
|
70
70
|
class List
|
71
71
|
# Sets the publisher name for the list.
|
72
72
|
cattr_accessor :publisher
|
73
73
|
end
|
74
|
-
|
74
|
+
|
75
75
|
This custom declaration provides dynamically generated code that is hard for a
|
76
76
|
documentation tool to properly document without help from the developer. To
|
77
77
|
ease the pains of manually documenting the procedure, YARD can be extended by
|
@@ -83,7 +83,7 @@ consumption by the users.
|
|
83
83
|
YARD is also designed for extensibility everywhere else, allowing you to add
|
84
84
|
support for new programming languages, new data structures and even where/how
|
85
85
|
data is stored.
|
86
|
-
|
86
|
+
|
87
87
|
**4. Raw Data Output**: YARD also outputs documented objects as raw data (the
|
88
88
|
dumped Namespace) which can be reloaded to do generation at a later date, or
|
89
89
|
even auditing on code. This means that any developer can use the raw data to
|
@@ -98,35 +98,33 @@ test cases, for example, or show possible unhandled exceptions in code.
|
|
98
98
|
**5. Local Documentation Server**: YARD can serve documentation for projects
|
99
99
|
or installed gems (similar to `gem server`) with the added benefit of dynamic
|
100
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
|
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
103
|
documentation a much faster process.
|
104
104
|
|
105
105
|
|
106
|
-
Installing
|
107
|
-
----------
|
106
|
+
## Installing
|
108
107
|
|
109
108
|
To install YARD, use the following command:
|
110
109
|
|
111
110
|
$ gem install yard
|
112
|
-
|
111
|
+
|
113
112
|
(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
|
113
|
+
|
114
|
+
Alternatively, if you've checked the source out directly, you can call
|
116
115
|
`rake install` from the root project directory.
|
117
116
|
|
118
117
|
**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.
|
118
|
+
install lacks RDoc, which is occasionally used by YARD to convert markup to HTML.
|
120
119
|
If running `which rdoc` turns up empty, install RDoc by issuing:
|
121
120
|
|
122
121
|
$ sudo apt-get install rdoc
|
123
|
-
|
124
122
|
|
125
|
-
|
126
|
-
|
123
|
+
|
124
|
+
## Usage
|
127
125
|
|
128
126
|
There are a couple of ways to use YARD. The first is via command-line, and the
|
129
|
-
second is the Rake task.
|
127
|
+
second is the Rake task.
|
130
128
|
|
131
129
|
**1. yard Command-line Tool**
|
132
130
|
|
@@ -135,7 +133,7 @@ functions of YARD, including generating documentation, graphs running the
|
|
135
133
|
YARD server, and so on. To view a list of available YARD commands, type:
|
136
134
|
|
137
135
|
$ yard --help
|
138
|
-
|
136
|
+
|
139
137
|
Plugins can also add commands to the `yard` executable to provide extra
|
140
138
|
functionality.
|
141
139
|
|
@@ -143,18 +141,18 @@ functionality.
|
|
143
141
|
|
144
142
|
<span class="note">The `yardoc` executable is a shortcut for `yard doc`.</span>
|
145
143
|
|
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
|
144
|
+
The most common command you will probably use is `yard doc`, or `yardoc`. You
|
145
|
+
can type `yardoc --help` to see the options that YARD provides, but the
|
146
|
+
easiest way to generate docs for your code is to simply type `yardoc` in your
|
149
147
|
project root. This will assume your files are
|
150
148
|
located in the `lib/` directory. If they are located elsewhere, you can specify
|
151
149
|
paths and globs from the commandline via:
|
152
150
|
|
153
151
|
$ yardoc 'lib/**/*.rb' 'app/**/*.rb' ...etc...
|
154
|
-
|
152
|
+
|
155
153
|
The tool will generate a `.yardoc` file which will store the cached database
|
156
154
|
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)
|
155
|
+
with another template you can simply use the `--use-cache` (or -c)
|
158
156
|
option to speed up the generation process by skipping source parsing.
|
159
157
|
|
160
158
|
YARD will by default only document code in your public visibility. You can
|
@@ -170,7 +168,7 @@ You can also add extra informative files (README, LICENSE) by separating
|
|
170
168
|
the globs and the filenames with '-'.
|
171
169
|
|
172
170
|
$ yardoc 'app/**/*.rb' - README LICENSE FAQ
|
173
|
-
|
171
|
+
|
174
172
|
If no globs precede the '-' argument, the default glob (`lib/**/*.rb`) is
|
175
173
|
used:
|
176
174
|
|
@@ -179,7 +177,7 @@ used:
|
|
179
177
|
Note that the README file can be specified with its own `--readme` switch.
|
180
178
|
|
181
179
|
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
|
180
|
+
the switches separated by whitespace (newlines or space) to pass to yardoc
|
183
181
|
whenever it is run. A full overview of the `.yardopts` file can be found in
|
184
182
|
{YARD::CLI::Yardoc}.
|
185
183
|
|
@@ -195,20 +193,20 @@ the same result:
|
|
195
193
|
--query 'object.has_tag?(:api) && object.tag(:api).text == "public"'
|
196
194
|
--query 'has_tag?(:api) && tag(:api).text == "public"'
|
197
195
|
|
198
|
-
Note that the "@tag" syntax returns the first tag named "tag" on the object.
|
196
|
+
Note that the "@tag" syntax returns the first tag named "tag" on the object.
|
199
197
|
To return the array of all tags named "tag", use "@@tag".
|
200
|
-
|
198
|
+
|
201
199
|
Multiple `--query` arguments are allowed in the command line parameters. The
|
202
200
|
following two lines both check for the existence of a return and param tag:
|
203
201
|
|
204
202
|
--query '@return' --query '@param'
|
205
203
|
--query '@return && @param'
|
206
|
-
|
204
|
+
|
207
205
|
For more information about the query syntax, see the {YARD::Verifier} class.
|
208
206
|
|
209
207
|
**2. Rake Task**
|
210
208
|
|
211
|
-
The second most obvious is to generate docs via a Rake task. You can do this by
|
209
|
+
The second most obvious is to generate docs via a Rake task. You can do this by
|
212
210
|
adding the following to your `Rakefile`:
|
213
211
|
|
214
212
|
YARD::Rake::YardocTask.new do |t|
|
@@ -223,7 +221,7 @@ in a shell. You can also override the options at the Rake command-line with the
|
|
223
221
|
OPTS environment variable:
|
224
222
|
|
225
223
|
$ rake yard OPTS='--any --extra --opts'
|
226
|
-
|
224
|
+
|
227
225
|
**3. `yri` RI Implementation**
|
228
226
|
|
229
227
|
The yri binary will use the cached .yardoc database to give you quick ri-style
|
@@ -232,15 +230,15 @@ work with the stdlib or core Ruby libraries, only the active project. Example:
|
|
232
230
|
|
233
231
|
$ yri YARD::Handlers::Base#register
|
234
232
|
$ yri File.relative_path
|
235
|
-
|
236
|
-
Note that class methods must not be referred to with the "::" namespace
|
233
|
+
|
234
|
+
Note that class methods must not be referred to with the "::" namespace
|
237
235
|
separator. Only modules, classes and constants should use "::".
|
238
236
|
|
239
237
|
You can also do lookups on any installed gems. Just make sure to build the
|
240
238
|
.yardoc databases for installed gems with:
|
241
239
|
|
242
240
|
$ sudo yard gems
|
243
|
-
|
241
|
+
|
244
242
|
If you don't have sudo access, it will write these files to your `~/.yard`
|
245
243
|
directory. `yri` will also cache lookups there.
|
246
244
|
|
@@ -250,7 +248,7 @@ The `yard server` command serves documentation for a local project or all instal
|
|
250
248
|
RubyGems. To serve documentation for a project you are working on, simply run:
|
251
249
|
|
252
250
|
$ yard server
|
253
|
-
|
251
|
+
|
254
252
|
And the project inside the current directory will be parsed (if the source has
|
255
253
|
not yet been scanned by YARD) and served at [http://localhost:8808](http://localhost:8808).
|
256
254
|
|
@@ -266,7 +264,7 @@ change any documentation in the source and refresh to see the new contents.
|
|
266
264
|
To serve documentation for all installed gems, call:
|
267
265
|
|
268
266
|
$ yard server --gems
|
269
|
-
|
267
|
+
|
270
268
|
This will also automatically build documentation for any gems that have not
|
271
269
|
been previously scanned. Note that in this case there will be a slight delay
|
272
270
|
between the first request of a newly parsed gem.
|
@@ -274,37 +272,50 @@ between the first request of a newly parsed gem.
|
|
274
272
|
|
275
273
|
**5. `yard graph` Graphviz Generator**
|
276
274
|
|
277
|
-
You can use `yard
|
275
|
+
You can use `yard graph` to generate dot graphs of your code. This, of course,
|
278
276
|
requires [Graphviz](http://www.graphviz.org) and the `dot` binary. By default
|
279
277
|
this will generate a graph of the classes and modules in the best UML2 notation
|
280
278
|
that Graphviz can support, but without any methods listed. With the `--full`
|
281
279
|
option, methods and attributes will be listed. There is also a `--dependencies`
|
282
280
|
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
|
284
|
-
More options can be seen by typing `yard
|
281
|
+
to `dot`. The same public, protected and private visibility rules apply to `yard graph`.
|
282
|
+
More options can be seen by typing `yard graph --help`, but here is an example:
|
285
283
|
|
286
284
|
$ yard graph --protected --full --dependencies
|
287
285
|
|
288
286
|
|
289
|
-
Changelog
|
290
|
-
|
287
|
+
## Changelog
|
288
|
+
|
289
|
+
- **April.30.12**: 0.8.0 release
|
290
|
+
- See {file:docs/WhatsNew.md} for a list of added features
|
291
|
+
- Over 20 bug fixes:
|
292
|
+
- Properly filter hidden setter/getter attributes (#394)
|
293
|
+
- Fix test failures in Linux environments (#397, #472, #473, #512, #513)
|
294
|
+
- Fix attribute inheritance and @private (#432)
|
295
|
+
- Fix attribute parsing (#435)
|
296
|
+
- Allow aliases for attributes (#436)
|
297
|
+
- Fix namespace fetching in `handle_alias()` (#437)
|
298
|
+
- Fix overwritten attributes marked as inherited (#442)
|
299
|
+
- Fix documenting constants defined from C code with `rb_define_const()` (#443)
|
300
|
+
- Do not escape snippets twice (#445)
|
301
|
+
- Ajax method/class search should not fire when a non-printable character is pressed (#446)
|
302
|
+
- Fix yard server crashing when RDoc is not installed (#456)
|
303
|
+
- Fix tags ignored when `(see #foo)` is used (#457)
|
304
|
+
- Fix three "Returns" for two `@overload` tags (#458)
|
305
|
+
- Do not auto-detect DSL methods as method objects if parameter name is not a valid method name (#464)
|
306
|
+
- Fix attaching of macros to Object (#465)
|
307
|
+
- Fix handling of `%w()` source in `[]/[]=` parsed context. (#461, pull in #468)
|
308
|
+
- Don't add default `@return` if `@overload` has `@return`. (#458, pull in #469)
|
309
|
+
- Don't discard tags by (see ...). (#457, pull in #470)
|
310
|
+
- Fix constants listed as inherited when overwritten (#474)
|
311
|
+
- Fix `yardoc --asset` behaving differently on first and subsequent calls. (#477)
|
312
|
+
- `!!!lang` code blocks should set the lang in `<pre>`'s class. (#478, #479)
|
313
|
+
- Fix "File List" search tab error. (#502)
|
314
|
+
- Fix search bar not redirecting to method page. (#509)
|
315
|
+
- Fix server returning exception message bodies as String (#518)
|
291
316
|
|
292
317
|
- **January.31.12**: 0.7.5 release
|
293
|
-
-
|
294
|
-
- Don't show inherited attributes if overridden (#432)
|
295
|
-
- Capture definitions in `/* definition: docstring */` format in C Ruby (#443)
|
296
|
-
- Do not escape highlighted code blocks twice (#445)
|
297
|
-
- Ignore non-printable characters in search autocomplete (#446)
|
298
|
-
- Verify markup options when loading .yardopts file in server mode (#456)
|
299
|
-
- Don't discard tags in (see ...) references (#457)
|
300
|
-
- Don't add @return to methods ending in '?' if has @overload (#458)
|
301
|
-
- Fix listing of source for %w() blocks with arrays (#461)
|
302
|
-
- Do not detect invalid method names as DSL methods (#464)
|
303
|
-
- Allow processing of macros attached to Object class (#465)
|
304
|
-
- Multi-object db is only enabled via switch (#466)
|
305
|
-
- Ignore inherited constants if overridden (#474)
|
306
|
-
- Do not copy asset inside dest directory if source is directory (#477)
|
307
|
-
- Set pre className when !!!lang is used to denote highlight language (#478, #479)
|
318
|
+
- Various minor bug fixes
|
308
319
|
|
309
320
|
- **December.2.11**: 0.7.4 release
|
310
321
|
- Redcarpet is now the default Markdown formatting library. GFM now works out-of-box (#404)
|
@@ -499,33 +510,31 @@ Changelog
|
|
499
510
|
RDoc. To take advantage of this plugin, set `has_rdoc = 'yard'` in your
|
500
511
|
.gemspec file.
|
501
512
|
|
502
|
-
- **Jun.07.09**: 0.2.3 release. See the {file:docs/WhatsNew.md} file for a
|
513
|
+
- **Jun.07.09**: 0.2.3 release. See the {file:docs/WhatsNew.md} file for a
|
503
514
|
list of important new features.
|
504
515
|
|
505
|
-
- **Jun.16.08**: 0.2.2 release. This is the largest changset since yard's
|
516
|
+
- **Jun.16.08**: 0.2.2 release. This is the largest changset since yard's
|
506
517
|
conception and involves a complete overhaul of the parser and API to make it
|
507
518
|
more robust and far easier to extend and use for the developer.
|
508
519
|
|
509
|
-
- **Feb.20.08**: 0.2.1 release.
|
520
|
+
- **Feb.20.08**: 0.2.1 release.
|
510
521
|
|
511
522
|
- **Feb.24.07**: Released 0.1a experimental version for testing. The goal here is
|
512
|
-
to get people testing YARD on their code because there are too many possible
|
513
|
-
code styles to fit into a sane amount of test cases. It also demonstrates the
|
514
|
-
power of YARD and what to expect from the syntax (Yardoc style meta tags).
|
523
|
+
to get people testing YARD on their code because there are too many possible
|
524
|
+
code styles to fit into a sane amount of test cases. It also demonstrates the
|
525
|
+
power of YARD and what to expect from the syntax (Yardoc style meta tags).
|
515
526
|
|
516
527
|
|
517
|
-
Contributors
|
518
|
-
------------
|
528
|
+
## Contributors
|
519
529
|
|
520
530
|
Special thanks to all contributors for submitting patches. A full list of
|
521
|
-
contributors including their patches can be found at:
|
531
|
+
contributors including their patches can be found at:
|
522
532
|
|
523
533
|
http://github.com/lsegal/yard/contributors
|
524
534
|
|
525
|
-
Copyright
|
526
|
-
---------
|
535
|
+
## Copyright
|
527
536
|
|
528
|
-
YARD © 2007-
|
537
|
+
YARD © 2007-2012 by [Loren Segal](mailto:lsegal@soen.ca). YARD is
|
529
538
|
licensed under the MIT license except for some files which come from the
|
530
|
-
RDoc/Ruby distributions. Please see the {file:LICENSE} and {file:LEGAL}
|
539
|
+
RDoc/Ruby distributions. Please see the {file:LICENSE} and {file:LEGAL}
|
531
540
|
documents for more information.
|
data/Rakefile
CHANGED
@@ -14,7 +14,7 @@ task :gem do
|
|
14
14
|
end
|
15
15
|
|
16
16
|
desc "Installs the gem"
|
17
|
-
task :install => :gem do
|
17
|
+
task :install => :gem do
|
18
18
|
sh "#{SUDO} gem install yard-#{YARD::VERSION}.gem --no-rdoc --no-ri"
|
19
19
|
end
|
20
20
|
|
@@ -60,14 +60,14 @@ begin
|
|
60
60
|
desc "Run all specs"
|
61
61
|
RSpec::Core::RakeTask.new("specs") do |t|
|
62
62
|
$DEBUG = true if ENV['DEBUG']
|
63
|
-
t.rspec_opts = ENV['SUITE'] ? [
|
63
|
+
t.rspec_opts = ENV['SUITE'] ? [] : ['-c']
|
64
64
|
t.rspec_opts += ["--require", File.join(File.dirname(__FILE__), 'spec', 'spec_helper')]
|
65
65
|
t.rspec_opts += ['-I', YARD::ROOT]
|
66
66
|
t.pattern = "spec/**/*_spec.rb"
|
67
67
|
t.verbose = $DEBUG ? true : false
|
68
|
-
|
68
|
+
|
69
69
|
if ENV['RCOV']
|
70
|
-
t.rcov = true
|
70
|
+
t.rcov = true
|
71
71
|
t.rcov_opts = ['-x', hide]
|
72
72
|
end
|
73
73
|
end
|
@@ -76,7 +76,7 @@ rescue LoadError
|
|
76
76
|
begin # Try for rspec 1.x
|
77
77
|
require 'spec'
|
78
78
|
require 'spec/rake/spectask'
|
79
|
-
|
79
|
+
|
80
80
|
Spec::Rake::SpecTask.new("specs") do |t|
|
81
81
|
$DEBUG = true if ENV['DEBUG']
|
82
82
|
t.spec_opts = ["--format", "specdoc", "--colour"]
|
@@ -84,7 +84,7 @@ rescue LoadError
|
|
84
84
|
t.pattern = "spec/**/*_spec.rb"
|
85
85
|
|
86
86
|
if ENV['RCOV']
|
87
|
-
t.rcov = true
|
87
|
+
t.rcov = true
|
88
88
|
t.rcov_opts = ['-x', hide]
|
89
89
|
end
|
90
90
|
end
|