yard 0.2.2 → 0.2.3
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.
Potentially problematic release.
This version of yard might be problematic. Click here for more details.
- data/LICENSE +1 -1
 - data/README.markdown +200 -0
 - data/Rakefile +6 -1
 - data/benchmarks/format_args.rb +46 -0
 - data/benchmarks/parsing.rb +13 -1
 - data/benchmarks/rdoc_vs_yardoc.rb +10 -0
 - data/benchmarks/ripper_parser.rb +12 -0
 - data/docs/CODE_OBJECTS.markdown +121 -0
 - data/docs/FAQ.markdown +34 -0
 - data/docs/GENERATORS.markdown +211 -0
 - data/docs/GETTING_STARTED.markdown +263 -0
 - data/docs/GLOSSARY.markdown +13 -0
 - data/docs/HANDLERS.markdown +158 -0
 - data/docs/OVERVIEW.markdown +64 -0
 - data/docs/PARSER.markdown +180 -0
 - data/docs/TAGS.markdown +181 -0
 - data/docs/WHATSNEW.markdown +96 -0
 - data/docs/images/code-objects-class-diagram.png +0 -0
 - data/docs/images/handlers-class-diagram.png +0 -0
 - data/docs/images/overview-class-diagram.png +0 -0
 - data/docs/images/parser-class-diagram.png +0 -0
 - data/docs/images/tags-class-diagram.png +0 -0
 - data/lib/yard.rb +4 -1
 - data/lib/yard/autoload.rb +79 -31
 - data/lib/yard/cli/yard_graph.rb +8 -2
 - data/lib/yard/cli/yardoc.rb +61 -8
 - data/lib/yard/code_objects/base.rb +78 -135
 - data/lib/yard/code_objects/class_object.rb +9 -8
 - data/lib/yard/code_objects/constant_object.rb +1 -0
 - data/lib/yard/code_objects/extended_method_object.rb +9 -0
 - data/lib/yard/code_objects/method_object.rb +18 -5
 - data/lib/yard/code_objects/module_object.rb +8 -1
 - data/lib/yard/code_objects/namespace_object.rb +25 -16
 - data/lib/yard/code_objects/proxy.rb +22 -22
 - data/lib/yard/core_ext/file.rb +1 -1
 - data/lib/yard/core_ext/string.rb +0 -4
 - data/lib/yard/core_ext/symbol_hash.rb +3 -2
 - data/lib/yard/docstring.rb +180 -0
 - data/lib/yard/generators/base.rb +33 -13
 - data/lib/yard/generators/class_generator.rb +4 -2
 - data/lib/yard/generators/constants_generator.rb +3 -2
 - data/lib/yard/generators/full_doc_generator.rb +76 -9
 - data/lib/yard/generators/helpers/base_helper.rb +18 -1
 - data/lib/yard/generators/helpers/filter_helper.rb +2 -2
 - data/lib/yard/generators/helpers/html_helper.rb +94 -39
 - data/lib/yard/generators/helpers/html_syntax_highlight_helper.rb +49 -0
 - data/lib/yard/generators/helpers/markup_helper.rb +86 -0
 - data/lib/yard/generators/helpers/method_helper.rb +23 -7
 - data/lib/yard/generators/method_generator.rb +15 -3
 - data/lib/yard/generators/method_listing_generator.rb +3 -3
 - data/lib/yard/generators/mixins_generator.rb +8 -2
 - data/lib/yard/generators/module_generator.rb +3 -2
 - data/lib/yard/generators/overloads_generator.rb +20 -0
 - data/lib/yard/generators/quick_doc_generator.rb +3 -9
 - data/lib/yard/generators/root_generator.rb +32 -0
 - data/lib/yard/generators/source_generator.rb +2 -17
 - data/lib/yard/generators/tags_generator.rb +34 -6
 - data/lib/yard/generators/uml_generator.rb +16 -6
 - data/lib/yard/handlers/base.rb +88 -253
 - data/lib/yard/handlers/processor.rb +72 -0
 - data/lib/yard/handlers/ruby/alias_handler.rb +38 -0
 - data/lib/yard/handlers/ruby/attribute_handler.rb +69 -0
 - data/lib/yard/handlers/ruby/base.rb +72 -0
 - data/lib/yard/handlers/ruby/class_condition_handler.rb +70 -0
 - data/lib/yard/handlers/ruby/class_handler.rb +74 -0
 - data/lib/yard/handlers/ruby/class_variable_handler.rb +11 -0
 - data/lib/yard/handlers/ruby/constant_handler.rb +12 -0
 - data/lib/yard/handlers/ruby/exception_handler.rb +22 -0
 - data/lib/yard/handlers/ruby/extend_handler.rb +19 -0
 - data/lib/yard/handlers/{alias_handler.rb → ruby/legacy/alias_handler.rb} +3 -4
 - data/lib/yard/handlers/{attribute_handler.rb → ruby/legacy/attribute_handler.rb} +2 -2
 - data/lib/yard/handlers/ruby/legacy/base.rb +198 -0
 - data/lib/yard/handlers/{class_handler.rb → ruby/legacy/class_handler.rb} +18 -6
 - data/lib/yard/handlers/{class_variable_handler.rb → ruby/legacy/class_variable_handler.rb} +1 -1
 - data/lib/yard/handlers/{constant_handler.rb → ruby/legacy/constant_handler.rb} +2 -2
 - data/lib/yard/handlers/{exception_handler.rb → ruby/legacy/exception_handler.rb} +3 -3
 - data/lib/yard/handlers/ruby/legacy/extend_handler.rb +18 -0
 - data/lib/yard/handlers/ruby/legacy/method_handler.rb +31 -0
 - data/lib/yard/handlers/ruby/legacy/mixin_handler.rb +28 -0
 - data/lib/yard/handlers/{module_handler.rb → ruby/legacy/module_handler.rb} +1 -1
 - data/lib/yard/handlers/{visibility_handler.rb → ruby/legacy/visibility_handler.rb} +1 -1
 - data/lib/yard/handlers/{yield_handler.rb → ruby/legacy/yield_handler.rb} +4 -4
 - data/lib/yard/handlers/ruby/method_condition_handler.rb +7 -0
 - data/lib/yard/handlers/ruby/method_handler.rb +48 -0
 - data/lib/yard/handlers/ruby/mixin_handler.rb +25 -0
 - data/lib/yard/handlers/ruby/module_handler.rb +9 -0
 - data/lib/yard/handlers/ruby/visibility_handler.rb +18 -0
 - data/lib/yard/handlers/ruby/yield_handler.rb +28 -0
 - data/lib/yard/parser/ruby/ast_node.rb +263 -0
 - data/lib/yard/parser/{ruby_lex.rb → ruby/legacy/ruby_lex.rb} +258 -259
 - data/lib/yard/parser/{statement.rb → ruby/legacy/statement.rb} +8 -4
 - data/lib/yard/parser/ruby/legacy/statement_list.rb +262 -0
 - data/lib/yard/parser/{token_list.rb → ruby/legacy/token_list.rb} +1 -1
 - data/lib/yard/parser/ruby/ruby_parser.rb +307 -0
 - data/lib/yard/parser/source_parser.rb +76 -45
 - data/lib/yard/rake/yardoc_task.rb +6 -1
 - data/lib/yard/registry.rb +45 -19
 - data/lib/yard/serializers/file_system_serializer.rb +8 -3
 - data/lib/yard/tags/default_factory.rb +70 -10
 - data/lib/yard/tags/default_tag.rb +12 -0
 - data/lib/yard/tags/library.rb +65 -26
 - data/lib/yard/tags/option_tag.rb +12 -0
 - data/lib/yard/tags/overload_tag.rb +62 -0
 - data/lib/yard/tags/ref_tag.rb +7 -0
 - data/lib/yard/tags/ref_tag_list.rb +27 -0
 - data/lib/yard/tags/tag.rb +1 -0
 - data/lib/yard/tags/tag_format_error.rb +6 -0
 - data/spec/cli/yardoc_spec.rb +43 -0
 - data/spec/code_objects/base_spec.rb +56 -68
 - data/spec/code_objects/class_object_spec.rb +18 -6
 - data/spec/code_objects/constants_spec.rb +2 -0
 - data/spec/code_objects/method_object_spec.rb +33 -5
 - data/spec/code_objects/module_object_spec.rb +66 -8
 - data/spec/code_objects/namespace_object_spec.rb +37 -17
 - data/spec/code_objects/proxy_spec.rb +13 -2
 - data/spec/core_ext/string_spec.rb +14 -2
 - data/spec/core_ext/symbol_hash_spec.rb +9 -3
 - data/spec/docstring_spec.rb +139 -0
 - data/spec/generators/full_doc_generator_spec.rb +29 -0
 - data/spec/generators/helpers/html_helper_spec.rb +74 -0
 - data/spec/generators/helpers/markup_helper_spec.rb +95 -0
 - data/spec/handlers/alias_handler_spec.rb +16 -3
 - data/spec/handlers/attribute_handler_spec.rb +1 -1
 - data/spec/handlers/base_spec.rb +15 -141
 - data/spec/handlers/class_condition_handler_spec.rb +49 -0
 - data/spec/handlers/class_handler_spec.rb +44 -3
 - data/spec/handlers/class_variable_handler_spec.rb +1 -1
 - data/spec/handlers/constant_handler_spec.rb +1 -1
 - data/spec/handlers/examples/alias_handler_001.rb.txt +7 -3
 - data/spec/handlers/examples/class_condition_handler_001.rb.txt +61 -0
 - data/spec/handlers/examples/class_handler_001.rb.txt +33 -0
 - data/spec/handlers/examples/exception_handler_001.rb.txt +1 -1
 - data/spec/handlers/examples/extend_handler_001.rb.txt +8 -0
 - data/spec/handlers/examples/method_condition_handler_001.rb.txt +10 -0
 - data/spec/handlers/examples/method_handler_001.rb.txt +16 -4
 - data/spec/handlers/examples/mixin_handler_001.rb.txt +10 -2
 - data/spec/handlers/examples/module_handler_001.rb.txt +4 -0
 - data/spec/handlers/examples/visibility_handler_001.rb.txt +1 -1
 - data/spec/handlers/exception_handler_spec.rb +2 -2
 - data/spec/handlers/extend_handler_spec.rb +15 -0
 - data/spec/handlers/legacy_base_spec.rb +128 -0
 - data/spec/handlers/method_condition_handler_spec.rb +14 -0
 - data/spec/handlers/method_handler_spec.rb +38 -5
 - data/spec/handlers/mixin_handler_spec.rb +15 -7
 - data/spec/handlers/module_handler_spec.rb +5 -1
 - data/spec/handlers/processor_spec.rb +19 -0
 - data/spec/handlers/ruby/base_spec.rb +90 -0
 - data/spec/handlers/ruby/legacy/base_spec.rb +53 -0
 - data/spec/handlers/spec_helper.rb +22 -16
 - data/spec/handlers/visibility_handler_spec.rb +4 -4
 - data/spec/handlers/yield_handler_spec.rb +1 -1
 - data/spec/parser/ruby/ast_node_spec.rb +15 -0
 - data/spec/parser/ruby/legacy/statement_list_spec.rb +145 -0
 - data/spec/parser/{token_list_spec.rb → ruby/legacy/token_list_spec.rb} +4 -4
 - data/spec/parser/source_parser_spec.rb +0 -15
 - data/spec/rake/yardoc_task_spec.rb +48 -0
 - data/spec/registry_spec.rb +28 -2
 - data/spec/serializers/file_system_serializer_spec.rb +7 -1
 - data/spec/spec_helper.rb +1 -1
 - data/spec/tags/default_factory_spec.rb +135 -0
 - data/spec/tags/default_tag_spec.rb +11 -0
 - data/spec/tags/overload_tag_spec.rb +35 -0
 - data/spec/tags/ref_tag_list_spec.rb +53 -0
 - data/templates/default/attributes/html/header.erb +17 -5
 - data/templates/default/attributes/text/header.erb +1 -1
 - data/templates/default/fulldoc/html/all_files.erb +19 -0
 - data/templates/default/fulldoc/html/all_methods.erb +8 -7
 - data/templates/default/fulldoc/html/all_namespaces.erb +4 -1
 - data/templates/default/fulldoc/html/app.js +1 -1
 - data/templates/default/fulldoc/html/{readme.erb → file.erb} +2 -2
 - data/templates/default/fulldoc/html/header.erb +1 -1
 - data/templates/default/fulldoc/html/index.erb +4 -3
 - data/templates/default/fulldoc/html/style.css +13 -3
 - data/templates/default/fulldoc/html/syntax_highlight.css +8 -5
 - data/templates/default/method/text/header.erb +1 -0
 - data/templates/default/method/text/title.erb +1 -0
 - data/templates/default/methodsignature/html/main.erb +10 -8
 - data/templates/default/methodsignature/text/main.erb +4 -1
 - data/templates/default/methodsummary/html/summary.erb +8 -4
 - data/templates/default/methodsummary/text/summary.erb +4 -1
 - data/templates/default/mixins/html/header.erb +3 -3
 - data/templates/default/overloads/html/header.erb +8 -0
 - data/templates/default/overloads/text/header.erb +8 -0
 - data/templates/default/root/html/header.erb +4 -0
 - data/templates/default/tags/html/example.erb +20 -0
 - data/templates/default/tags/html/option.erb +27 -0
 - data/templates/default/tags/html/param.erb +21 -0
 - data/templates/default/tags/html/tags.erb +4 -1
 - data/templates/default/tags/html/todo.erb +8 -0
 - data/templates/default/tags/text/example.erb +14 -0
 - data/templates/default/tags/text/header.erb +3 -3
 - data/templates/default/tags/text/option.erb +5 -0
 - data/templates/default/tags/text/param.erb +9 -0
 - data/templates/default/uml/dot/dependencies.erb +1 -1
 - data/templates/default/uml/dot/info.erb +1 -1
 - data/templates/default/uml/dot/superclasses.erb +2 -2
 - data/templates/javadoc/methodsummary/html/summary.erb +2 -2
 - data/templates/javadoc/mixins/html/header.erb +3 -3
 - metadata +108 -139
 - data/README +0 -211
 - data/lib/yard/handlers/method_handler.rb +0 -27
 - data/lib/yard/handlers/mixin_handler.rb +0 -16
 - data/lib/yard/parser/statement_list.rb +0 -167
 - data/lib/yard/tags/merbdoc_factory.rb +0 -47
 
| 
         @@ -0,0 +1,5 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
              - Options hash <%= param %>:
         
     | 
| 
      
 2 
     | 
    
         
            +
            <% for tag in object.tags(:option).select {|x| x.name.to_s == param } %>
         
     | 
| 
      
 3 
     | 
    
         
            +
                - <%= format_types (tag.pair.types || ['Object']) %> <%= tag.pair.name %> <%  %><%= tag.pair.defaults.map {|t| "(defaults to #{t})" }.join(", ") if tag.pair.defaults %> <%= tag.pair.text %>
         
     | 
| 
      
 4 
     | 
    
         
            +
            <% end %>
         
     | 
| 
      
 5 
     | 
    
         
            +
             
     | 
| 
         @@ -0,0 +1,9 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            > <%= YARD::Tags::Library.labels[:param] %>:
         
     | 
| 
      
 2 
     | 
    
         
            +
            <% for tag in tags_by_param(object) %>
         
     | 
| 
      
 3 
     | 
    
         
            +
            <% if tag.is_a?(YARD::Tags::OptionTag) %>
         
     | 
| 
      
 4 
     | 
    
         
            +
            <%= render object, 'option', :param => tag.name.to_s %>
         
     | 
| 
      
 5 
     | 
    
         
            +
            <% else %>
         
     | 
| 
      
 6 
     | 
    
         
            +
              - <%= format_types (tag.types || ['Object']) %> <%= h tag.name %> <% if (o=object.parameters.assoc(tag.name.to_sym)) && o[1] %>(defaults to: <%= h o[1] %>)<% end %>
         
     | 
| 
      
 7 
     | 
    
         
            +
            <%= "    " + tag.text if tag.text %>
         
     | 
| 
      
 8 
     | 
    
         
            +
            <% end %>
         
     | 
| 
      
 9 
     | 
    
         
            +
            <% end %>
         
     | 
| 
         @@ -1,7 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            <%= object.type %> <%= h object.name %>
         
     | 
| 
       2 
2 
     | 
    
         
             
            <% if show_full_info? %>
         
     | 
| 
       3 
3 
     | 
    
         
             
            |
         
     | 
| 
       4 
     | 
    
         
            -
            <% object. 
     | 
| 
      
 4 
     | 
    
         
            +
            <% object.attributes.each do |scope, list| %>
         
     | 
| 
       5 
5 
     | 
    
         
             
            <% list.each do |name, rw| %>
         
     | 
| 
       6 
6 
     | 
    
         
             
            <%= uml_visibility(rw.values.compact.first) %> <%= h rw.values.compact.first.name(true) %> [<%= 'R' if rw[:read] %><%= 'W' if rw[:write] %>]\l
         
     | 
| 
       7 
7 
     | 
    
         
             
            <% end %>
         
     | 
| 
         @@ -1,5 +1,5 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            <% for obj in @objects.select {|o| CodeObjects::ClassObject === o && o.superclass != P(:Object) } %>
         
     | 
| 
       2 
     | 
    
         
            -
              <% [obj, obj.superclass].each do |o| %>
         
     | 
| 
      
 1 
     | 
    
         
            +
            <% for obj in @objects.select {|o| CodeObjects::ClassObject === o && o.superclass && o.superclass != P(:Object) } %>
         
     | 
| 
      
 2 
     | 
    
         
            +
              <% [obj, obj.superclass].compact.each do |o| %>
         
     | 
| 
       3 
3 
     | 
    
         
             
                <% if o != Registry.root && (!o.respond_to?(:children) || !namespaces(o).empty?) %>
         
     | 
| 
       4 
4 
     | 
    
         
             
                  <%= format_path o %> [label="{<%= o.type %> <%= o.path %>}" rank=sink];
         
     | 
| 
       5 
5 
     | 
    
         
             
                <% end %>
         
     | 
| 
         @@ -11,9 +11,9 @@ 
     | 
|
| 
       11 
11 
     | 
    
         
             
                      <span class='block'><%= format_block meth %></span>
         
     | 
| 
       12 
12 
     | 
    
         
             
                    </tt>
         
     | 
| 
       13 
13 
     | 
    
         
             
                    <span class="indent">
         
     | 
| 
       14 
     | 
    
         
            -
                      <%  
     | 
| 
      
 14 
     | 
    
         
            +
                      <% unless meth.docstring.summary.empty? %>
         
     | 
| 
       15 
15 
     | 
    
         
             
                        <br />
         
     | 
| 
       16 
     | 
    
         
            -
                             <%= meth. 
     | 
| 
      
 16 
     | 
    
         
            +
                             <%= meth.docstring.summary %>
         
     | 
| 
       17 
17 
     | 
    
         
             
                      <% end %>
         
     | 
| 
       18 
18 
     | 
    
         
             
                      <% if meth.has_tag?(:deprecated) %>
         
     | 
| 
       19 
19 
     | 
    
         
             
                      <br /><strong>Deprecated.</strong> <em><%= meth.tag(:deprecated).text %></em>
         
     | 
| 
         @@ -1,5 +1,5 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            <div class="section <%= generator_name %>">
         
     | 
| 
       2 
     | 
    
         
            -
              <strong 
     | 
| 
       3 
     | 
    
         
            -
              <p><%= object.mixins.map {|o| linkify o }.join(", ") %></p>
         
     | 
| 
      
 2 
     | 
    
         
            +
              <strong><%= scope == :instance ? "Included" : "Extended" %> Modules:</strong>
         
     | 
| 
      
 3 
     | 
    
         
            +
              <p><%= object.mixins(scope).map {|o| linkify o }.join(", ") %></p>
         
     | 
| 
       4 
4 
     | 
    
         
             
            </div>
         
     | 
| 
       5 
     | 
    
         
            -
            <hr />
         
     | 
| 
      
 5 
     | 
    
         
            +
            <hr />
         
     | 
    
        metadata
    CHANGED
    
    | 
         @@ -1,7 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            --- !ruby/object:Gem::Specification 
         
     | 
| 
       2 
2 
     | 
    
         
             
            name: yard
         
     | 
| 
       3 
3 
     | 
    
         
             
            version: !ruby/object:Gem::Version 
         
     | 
| 
       4 
     | 
    
         
            -
              version: 0.2. 
     | 
| 
      
 4 
     | 
    
         
            +
              version: 0.2.3
         
     | 
| 
       5 
5 
     | 
    
         
             
            platform: ruby
         
     | 
| 
       6 
6 
     | 
    
         
             
            authors: 
         
     | 
| 
       7 
7 
     | 
    
         
             
            - Loren Segal
         
     | 
| 
         @@ -9,7 +9,7 @@ autorequire: 
     | 
|
| 
       9 
9 
     | 
    
         
             
            bindir: bin
         
     | 
| 
       10 
10 
     | 
    
         
             
            cert_chain: []
         
     | 
| 
       11 
11 
     | 
    
         | 
| 
       12 
     | 
    
         
            -
            date:  
     | 
| 
      
 12 
     | 
    
         
            +
            date: 2009-06-07 00:00:00 -04:00
         
     | 
| 
       13 
13 
     | 
    
         
             
            default_executable: 
         
     | 
| 
       14 
14 
     | 
    
         
             
            dependencies: []
         
     | 
| 
       15 
15 
     | 
    
         | 
| 
         @@ -24,32 +24,44 @@ extensions: [] 
     | 
|
| 
       24 
24 
     | 
    
         
             
            extra_rdoc_files: []
         
     | 
| 
       25 
25 
     | 
    
         | 
| 
       26 
26 
     | 
    
         
             
            files: 
         
     | 
| 
      
 27 
     | 
    
         
            +
            - docs/CODE_OBJECTS.markdown
         
     | 
| 
      
 28 
     | 
    
         
            +
            - docs/FAQ.markdown
         
     | 
| 
      
 29 
     | 
    
         
            +
            - docs/GENERATORS.markdown
         
     | 
| 
      
 30 
     | 
    
         
            +
            - docs/GETTING_STARTED.markdown
         
     | 
| 
      
 31 
     | 
    
         
            +
            - docs/GLOSSARY.markdown
         
     | 
| 
      
 32 
     | 
    
         
            +
            - docs/HANDLERS.markdown
         
     | 
| 
      
 33 
     | 
    
         
            +
            - docs/images/code-objects-class-diagram.png
         
     | 
| 
      
 34 
     | 
    
         
            +
            - docs/images/handlers-class-diagram.png
         
     | 
| 
      
 35 
     | 
    
         
            +
            - docs/images/overview-class-diagram.png
         
     | 
| 
      
 36 
     | 
    
         
            +
            - docs/images/parser-class-diagram.png
         
     | 
| 
      
 37 
     | 
    
         
            +
            - docs/images/tags-class-diagram.png
         
     | 
| 
      
 38 
     | 
    
         
            +
            - docs/OVERVIEW.markdown
         
     | 
| 
      
 39 
     | 
    
         
            +
            - docs/PARSER.markdown
         
     | 
| 
      
 40 
     | 
    
         
            +
            - docs/TAGS.markdown
         
     | 
| 
      
 41 
     | 
    
         
            +
            - docs/WHATSNEW.markdown
         
     | 
| 
       27 
42 
     | 
    
         
             
            - bin/view_generator
         
     | 
| 
       28 
43 
     | 
    
         
             
            - bin/yard-graph
         
     | 
| 
       29 
44 
     | 
    
         
             
            - bin/yardoc
         
     | 
| 
       30 
45 
     | 
    
         
             
            - bin/yri
         
     | 
| 
       31 
     | 
    
         
            -
            - lib/yard
         
     | 
| 
       32 
46 
     | 
    
         
             
            - lib/yard/autoload.rb
         
     | 
| 
       33 
     | 
    
         
            -
            - lib/yard/cli
         
     | 
| 
       34 
47 
     | 
    
         
             
            - lib/yard/cli/yard_graph.rb
         
     | 
| 
       35 
48 
     | 
    
         
             
            - lib/yard/cli/yardoc.rb
         
     | 
| 
       36 
     | 
    
         
            -
            - lib/yard/code_objects
         
     | 
| 
       37 
49 
     | 
    
         
             
            - lib/yard/code_objects/base.rb
         
     | 
| 
       38 
50 
     | 
    
         
             
            - lib/yard/code_objects/class_object.rb
         
     | 
| 
       39 
51 
     | 
    
         
             
            - lib/yard/code_objects/class_variable_object.rb
         
     | 
| 
       40 
52 
     | 
    
         
             
            - lib/yard/code_objects/constant_object.rb
         
     | 
| 
      
 53 
     | 
    
         
            +
            - lib/yard/code_objects/extended_method_object.rb
         
     | 
| 
       41 
54 
     | 
    
         
             
            - lib/yard/code_objects/method_object.rb
         
     | 
| 
       42 
55 
     | 
    
         
             
            - lib/yard/code_objects/module_object.rb
         
     | 
| 
       43 
56 
     | 
    
         
             
            - lib/yard/code_objects/namespace_object.rb
         
     | 
| 
       44 
57 
     | 
    
         
             
            - lib/yard/code_objects/proxy.rb
         
     | 
| 
       45 
58 
     | 
    
         
             
            - lib/yard/code_objects/root_object.rb
         
     | 
| 
       46 
     | 
    
         
            -
            - lib/yard/core_ext
         
     | 
| 
       47 
59 
     | 
    
         
             
            - lib/yard/core_ext/file.rb
         
     | 
| 
       48 
60 
     | 
    
         
             
            - lib/yard/core_ext/logger.rb
         
     | 
| 
       49 
61 
     | 
    
         
             
            - lib/yard/core_ext/module.rb
         
     | 
| 
       50 
62 
     | 
    
         
             
            - lib/yard/core_ext/string.rb
         
     | 
| 
       51 
63 
     | 
    
         
             
            - lib/yard/core_ext/symbol_hash.rb
         
     | 
| 
       52 
     | 
    
         
            -
            - lib/yard/ 
     | 
| 
      
 64 
     | 
    
         
            +
            - lib/yard/docstring.rb
         
     | 
| 
       53 
65 
     | 
    
         
             
            - lib/yard/generators/attributes_generator.rb
         
     | 
| 
       54 
66 
     | 
    
         
             
            - lib/yard/generators/base.rb
         
     | 
| 
       55 
67 
     | 
    
         
             
            - lib/yard/generators/class_generator.rb
         
     | 
| 
         @@ -58,10 +70,11 @@ files: 
     | 
|
| 
       58 
70 
     | 
    
         
             
            - lib/yard/generators/deprecated_generator.rb
         
     | 
| 
       59 
71 
     | 
    
         
             
            - lib/yard/generators/docstring_generator.rb
         
     | 
| 
       60 
72 
     | 
    
         
             
            - lib/yard/generators/full_doc_generator.rb
         
     | 
| 
       61 
     | 
    
         
            -
            - lib/yard/generators/helpers
         
     | 
| 
       62 
73 
     | 
    
         
             
            - lib/yard/generators/helpers/base_helper.rb
         
     | 
| 
       63 
74 
     | 
    
         
             
            - lib/yard/generators/helpers/filter_helper.rb
         
     | 
| 
       64 
75 
     | 
    
         
             
            - lib/yard/generators/helpers/html_helper.rb
         
     | 
| 
      
 76 
     | 
    
         
            +
            - lib/yard/generators/helpers/html_syntax_highlight_helper.rb
         
     | 
| 
      
 77 
     | 
    
         
            +
            - lib/yard/generators/helpers/markup_helper.rb
         
     | 
| 
       65 
78 
     | 
    
         
             
            - lib/yard/generators/helpers/method_helper.rb
         
     | 
| 
       66 
79 
     | 
    
         
             
            - lib/yard/generators/helpers/uml_helper.rb
         
     | 
| 
       67 
80 
     | 
    
         
             
            - lib/yard/generators/inheritance_generator.rb
         
     | 
| 
         @@ -73,46 +86,68 @@ files: 
     | 
|
| 
       73 
86 
     | 
    
         
             
            - lib/yard/generators/method_summary_generator.rb
         
     | 
| 
       74 
87 
     | 
    
         
             
            - lib/yard/generators/mixins_generator.rb
         
     | 
| 
       75 
88 
     | 
    
         
             
            - lib/yard/generators/module_generator.rb
         
     | 
| 
      
 89 
     | 
    
         
            +
            - lib/yard/generators/overloads_generator.rb
         
     | 
| 
       76 
90 
     | 
    
         
             
            - lib/yard/generators/quick_doc_generator.rb
         
     | 
| 
      
 91 
     | 
    
         
            +
            - lib/yard/generators/root_generator.rb
         
     | 
| 
       77 
92 
     | 
    
         
             
            - lib/yard/generators/source_generator.rb
         
     | 
| 
       78 
93 
     | 
    
         
             
            - lib/yard/generators/tags_generator.rb
         
     | 
| 
       79 
94 
     | 
    
         
             
            - lib/yard/generators/uml_generator.rb
         
     | 
| 
       80 
95 
     | 
    
         
             
            - lib/yard/generators/visibility_group_generator.rb
         
     | 
| 
       81 
     | 
    
         
            -
            - lib/yard/handlers
         
     | 
| 
       82 
     | 
    
         
            -
            - lib/yard/handlers/alias_handler.rb
         
     | 
| 
       83 
     | 
    
         
            -
            - lib/yard/handlers/attribute_handler.rb
         
     | 
| 
       84 
96 
     | 
    
         
             
            - lib/yard/handlers/base.rb
         
     | 
| 
       85 
     | 
    
         
            -
            - lib/yard/handlers/ 
     | 
| 
       86 
     | 
    
         
            -
            - lib/yard/handlers/ 
     | 
| 
       87 
     | 
    
         
            -
            - lib/yard/handlers/ 
     | 
| 
       88 
     | 
    
         
            -
            - lib/yard/handlers/ 
     | 
| 
       89 
     | 
    
         
            -
            - lib/yard/handlers/ 
     | 
| 
       90 
     | 
    
         
            -
            - lib/yard/handlers/ 
     | 
| 
       91 
     | 
    
         
            -
            - lib/yard/handlers/ 
     | 
| 
       92 
     | 
    
         
            -
            - lib/yard/handlers/ 
     | 
| 
       93 
     | 
    
         
            -
            - lib/yard/handlers/ 
     | 
| 
      
 97 
     | 
    
         
            +
            - lib/yard/handlers/processor.rb
         
     | 
| 
      
 98 
     | 
    
         
            +
            - lib/yard/handlers/ruby/alias_handler.rb
         
     | 
| 
      
 99 
     | 
    
         
            +
            - lib/yard/handlers/ruby/attribute_handler.rb
         
     | 
| 
      
 100 
     | 
    
         
            +
            - lib/yard/handlers/ruby/base.rb
         
     | 
| 
      
 101 
     | 
    
         
            +
            - lib/yard/handlers/ruby/class_condition_handler.rb
         
     | 
| 
      
 102 
     | 
    
         
            +
            - lib/yard/handlers/ruby/class_handler.rb
         
     | 
| 
      
 103 
     | 
    
         
            +
            - lib/yard/handlers/ruby/class_variable_handler.rb
         
     | 
| 
      
 104 
     | 
    
         
            +
            - lib/yard/handlers/ruby/constant_handler.rb
         
     | 
| 
      
 105 
     | 
    
         
            +
            - lib/yard/handlers/ruby/exception_handler.rb
         
     | 
| 
      
 106 
     | 
    
         
            +
            - lib/yard/handlers/ruby/extend_handler.rb
         
     | 
| 
      
 107 
     | 
    
         
            +
            - lib/yard/handlers/ruby/legacy/alias_handler.rb
         
     | 
| 
      
 108 
     | 
    
         
            +
            - lib/yard/handlers/ruby/legacy/attribute_handler.rb
         
     | 
| 
      
 109 
     | 
    
         
            +
            - lib/yard/handlers/ruby/legacy/base.rb
         
     | 
| 
      
 110 
     | 
    
         
            +
            - lib/yard/handlers/ruby/legacy/class_handler.rb
         
     | 
| 
      
 111 
     | 
    
         
            +
            - lib/yard/handlers/ruby/legacy/class_variable_handler.rb
         
     | 
| 
      
 112 
     | 
    
         
            +
            - lib/yard/handlers/ruby/legacy/constant_handler.rb
         
     | 
| 
      
 113 
     | 
    
         
            +
            - lib/yard/handlers/ruby/legacy/exception_handler.rb
         
     | 
| 
      
 114 
     | 
    
         
            +
            - lib/yard/handlers/ruby/legacy/extend_handler.rb
         
     | 
| 
      
 115 
     | 
    
         
            +
            - lib/yard/handlers/ruby/legacy/method_handler.rb
         
     | 
| 
      
 116 
     | 
    
         
            +
            - lib/yard/handlers/ruby/legacy/mixin_handler.rb
         
     | 
| 
      
 117 
     | 
    
         
            +
            - lib/yard/handlers/ruby/legacy/module_handler.rb
         
     | 
| 
      
 118 
     | 
    
         
            +
            - lib/yard/handlers/ruby/legacy/visibility_handler.rb
         
     | 
| 
      
 119 
     | 
    
         
            +
            - lib/yard/handlers/ruby/legacy/yield_handler.rb
         
     | 
| 
      
 120 
     | 
    
         
            +
            - lib/yard/handlers/ruby/method_condition_handler.rb
         
     | 
| 
      
 121 
     | 
    
         
            +
            - lib/yard/handlers/ruby/method_handler.rb
         
     | 
| 
      
 122 
     | 
    
         
            +
            - lib/yard/handlers/ruby/mixin_handler.rb
         
     | 
| 
      
 123 
     | 
    
         
            +
            - lib/yard/handlers/ruby/module_handler.rb
         
     | 
| 
      
 124 
     | 
    
         
            +
            - lib/yard/handlers/ruby/visibility_handler.rb
         
     | 
| 
      
 125 
     | 
    
         
            +
            - lib/yard/handlers/ruby/yield_handler.rb
         
     | 
| 
       94 
126 
     | 
    
         
             
            - lib/yard/logging.rb
         
     | 
| 
       95 
     | 
    
         
            -
            - lib/yard/parser
         
     | 
| 
       96 
     | 
    
         
            -
            - lib/yard/parser/ruby_lex.rb
         
     | 
| 
      
 127 
     | 
    
         
            +
            - lib/yard/parser/ruby/ast_node.rb
         
     | 
| 
      
 128 
     | 
    
         
            +
            - lib/yard/parser/ruby/legacy/ruby_lex.rb
         
     | 
| 
      
 129 
     | 
    
         
            +
            - lib/yard/parser/ruby/legacy/statement.rb
         
     | 
| 
      
 130 
     | 
    
         
            +
            - lib/yard/parser/ruby/legacy/statement_list.rb
         
     | 
| 
      
 131 
     | 
    
         
            +
            - lib/yard/parser/ruby/legacy/token_list.rb
         
     | 
| 
      
 132 
     | 
    
         
            +
            - lib/yard/parser/ruby/ruby_parser.rb
         
     | 
| 
       97 
133 
     | 
    
         
             
            - lib/yard/parser/source_parser.rb
         
     | 
| 
       98 
     | 
    
         
            -
            - lib/yard/parser/statement.rb
         
     | 
| 
       99 
     | 
    
         
            -
            - lib/yard/parser/statement_list.rb
         
     | 
| 
       100 
     | 
    
         
            -
            - lib/yard/parser/token_list.rb
         
     | 
| 
       101 
     | 
    
         
            -
            - lib/yard/rake
         
     | 
| 
       102 
134 
     | 
    
         
             
            - lib/yard/rake/yardoc_task.rb
         
     | 
| 
       103 
135 
     | 
    
         
             
            - lib/yard/registry.rb
         
     | 
| 
       104 
     | 
    
         
            -
            - lib/yard/serializers
         
     | 
| 
       105 
136 
     | 
    
         
             
            - lib/yard/serializers/base.rb
         
     | 
| 
       106 
137 
     | 
    
         
             
            - lib/yard/serializers/file_system_serializer.rb
         
     | 
| 
       107 
138 
     | 
    
         
             
            - lib/yard/serializers/process_serializer.rb
         
     | 
| 
       108 
139 
     | 
    
         
             
            - lib/yard/serializers/stdout_serializer.rb
         
     | 
| 
       109 
     | 
    
         
            -
            - lib/yard/tags
         
     | 
| 
       110 
140 
     | 
    
         
             
            - lib/yard/tags/default_factory.rb
         
     | 
| 
      
 141 
     | 
    
         
            +
            - lib/yard/tags/default_tag.rb
         
     | 
| 
       111 
142 
     | 
    
         
             
            - lib/yard/tags/library.rb
         
     | 
| 
       112 
     | 
    
         
            -
            - lib/yard/tags/ 
     | 
| 
      
 143 
     | 
    
         
            +
            - lib/yard/tags/option_tag.rb
         
     | 
| 
      
 144 
     | 
    
         
            +
            - lib/yard/tags/overload_tag.rb
         
     | 
| 
      
 145 
     | 
    
         
            +
            - lib/yard/tags/ref_tag.rb
         
     | 
| 
      
 146 
     | 
    
         
            +
            - lib/yard/tags/ref_tag_list.rb
         
     | 
| 
       113 
147 
     | 
    
         
             
            - lib/yard/tags/tag.rb
         
     | 
| 
      
 148 
     | 
    
         
            +
            - lib/yard/tags/tag_format_error.rb
         
     | 
| 
       114 
149 
     | 
    
         
             
            - lib/yard.rb
         
     | 
| 
       115 
     | 
    
         
            -
            - spec/ 
     | 
| 
      
 150 
     | 
    
         
            +
            - spec/cli/yardoc_spec.rb
         
     | 
| 
       116 
151 
     | 
    
         
             
            - spec/code_objects/base_spec.rb
         
     | 
| 
       117 
152 
     | 
    
         
             
            - spec/code_objects/class_object_spec.rb
         
     | 
| 
       118 
153 
     | 
    
         
             
            - spec/code_objects/code_object_list_spec.rb
         
     | 
| 
         @@ -122,155 +157,131 @@ files: 
     | 
|
| 
       122 
157 
     | 
    
         
             
            - spec/code_objects/namespace_object_spec.rb
         
     | 
| 
       123 
158 
     | 
    
         
             
            - spec/code_objects/proxy_spec.rb
         
     | 
| 
       124 
159 
     | 
    
         
             
            - spec/code_objects/spec_helper.rb
         
     | 
| 
       125 
     | 
    
         
            -
            - spec/core_ext
         
     | 
| 
       126 
160 
     | 
    
         
             
            - spec/core_ext/file_spec.rb
         
     | 
| 
       127 
161 
     | 
    
         
             
            - spec/core_ext/string_spec.rb
         
     | 
| 
       128 
162 
     | 
    
         
             
            - spec/core_ext/symbol_hash_spec.rb
         
     | 
| 
       129 
     | 
    
         
            -
            - spec/ 
     | 
| 
      
 163 
     | 
    
         
            +
            - spec/docstring_spec.rb
         
     | 
| 
       130 
164 
     | 
    
         
             
            - spec/generators/base_spec.rb
         
     | 
| 
       131 
     | 
    
         
            -
            - spec/generators/ 
     | 
| 
      
 165 
     | 
    
         
            +
            - spec/generators/full_doc_generator_spec.rb
         
     | 
| 
       132 
166 
     | 
    
         
             
            - spec/generators/helpers/base_helper_spec.rb
         
     | 
| 
       133 
167 
     | 
    
         
             
            - spec/generators/helpers/html_helper_spec.rb
         
     | 
| 
      
 168 
     | 
    
         
            +
            - spec/generators/helpers/markup_helper_spec.rb
         
     | 
| 
       134 
169 
     | 
    
         
             
            - spec/generators/quick_doc_generator_spec.rb
         
     | 
| 
       135 
     | 
    
         
            -
            - spec/handlers
         
     | 
| 
       136 
170 
     | 
    
         
             
            - spec/handlers/alias_handler_spec.rb
         
     | 
| 
       137 
171 
     | 
    
         
             
            - spec/handlers/attribute_handler_spec.rb
         
     | 
| 
       138 
172 
     | 
    
         
             
            - spec/handlers/base_spec.rb
         
     | 
| 
      
 173 
     | 
    
         
            +
            - spec/handlers/class_condition_handler_spec.rb
         
     | 
| 
       139 
174 
     | 
    
         
             
            - spec/handlers/class_handler_spec.rb
         
     | 
| 
       140 
175 
     | 
    
         
             
            - spec/handlers/class_variable_handler_spec.rb
         
     | 
| 
       141 
176 
     | 
    
         
             
            - spec/handlers/constant_handler_spec.rb
         
     | 
| 
       142 
     | 
    
         
            -
            - spec/handlers/examples
         
     | 
| 
       143 
177 
     | 
    
         
             
            - spec/handlers/examples/alias_handler_001.rb.txt
         
     | 
| 
       144 
178 
     | 
    
         
             
            - spec/handlers/examples/attribute_handler_001.rb.txt
         
     | 
| 
      
 179 
     | 
    
         
            +
            - spec/handlers/examples/class_condition_handler_001.rb.txt
         
     | 
| 
       145 
180 
     | 
    
         
             
            - spec/handlers/examples/class_handler_001.rb.txt
         
     | 
| 
       146 
181 
     | 
    
         
             
            - spec/handlers/examples/class_variable_handler_001.rb.txt
         
     | 
| 
       147 
182 
     | 
    
         
             
            - spec/handlers/examples/constant_handler_001.rb.txt
         
     | 
| 
       148 
183 
     | 
    
         
             
            - spec/handlers/examples/exception_handler_001.rb.txt
         
     | 
| 
      
 184 
     | 
    
         
            +
            - spec/handlers/examples/extend_handler_001.rb.txt
         
     | 
| 
      
 185 
     | 
    
         
            +
            - spec/handlers/examples/method_condition_handler_001.rb.txt
         
     | 
| 
       149 
186 
     | 
    
         
             
            - spec/handlers/examples/method_handler_001.rb.txt
         
     | 
| 
       150 
187 
     | 
    
         
             
            - spec/handlers/examples/mixin_handler_001.rb.txt
         
     | 
| 
       151 
188 
     | 
    
         
             
            - spec/handlers/examples/module_handler_001.rb.txt
         
     | 
| 
       152 
189 
     | 
    
         
             
            - spec/handlers/examples/visibility_handler_001.rb.txt
         
     | 
| 
       153 
190 
     | 
    
         
             
            - spec/handlers/examples/yield_handler_001.rb.txt
         
     | 
| 
       154 
191 
     | 
    
         
             
            - spec/handlers/exception_handler_spec.rb
         
     | 
| 
      
 192 
     | 
    
         
            +
            - spec/handlers/extend_handler_spec.rb
         
     | 
| 
      
 193 
     | 
    
         
            +
            - spec/handlers/legacy_base_spec.rb
         
     | 
| 
      
 194 
     | 
    
         
            +
            - spec/handlers/method_condition_handler_spec.rb
         
     | 
| 
       155 
195 
     | 
    
         
             
            - spec/handlers/method_handler_spec.rb
         
     | 
| 
       156 
196 
     | 
    
         
             
            - spec/handlers/mixin_handler_spec.rb
         
     | 
| 
       157 
197 
     | 
    
         
             
            - spec/handlers/module_handler_spec.rb
         
     | 
| 
      
 198 
     | 
    
         
            +
            - spec/handlers/processor_spec.rb
         
     | 
| 
      
 199 
     | 
    
         
            +
            - spec/handlers/ruby/base_spec.rb
         
     | 
| 
      
 200 
     | 
    
         
            +
            - spec/handlers/ruby/legacy/base_spec.rb
         
     | 
| 
       158 
201 
     | 
    
         
             
            - spec/handlers/spec_helper.rb
         
     | 
| 
       159 
202 
     | 
    
         
             
            - spec/handlers/visibility_handler_spec.rb
         
     | 
| 
       160 
203 
     | 
    
         
             
            - spec/handlers/yield_handler_spec.rb
         
     | 
| 
       161 
     | 
    
         
            -
            - spec/parser
         
     | 
| 
       162 
     | 
    
         
            -
            - spec/parser/examples
         
     | 
| 
       163 
204 
     | 
    
         
             
            - spec/parser/examples/example1.rb.txt
         
     | 
| 
       164 
205 
     | 
    
         
             
            - spec/parser/examples/tag_handler_001.rb.txt
         
     | 
| 
      
 206 
     | 
    
         
            +
            - spec/parser/ruby/ast_node_spec.rb
         
     | 
| 
      
 207 
     | 
    
         
            +
            - spec/parser/ruby/legacy/statement_list_spec.rb
         
     | 
| 
      
 208 
     | 
    
         
            +
            - spec/parser/ruby/legacy/token_list_spec.rb
         
     | 
| 
       165 
209 
     | 
    
         
             
            - spec/parser/source_parser_spec.rb
         
     | 
| 
       166 
210 
     | 
    
         
             
            - spec/parser/tag_parsing_spec.rb
         
     | 
| 
       167 
     | 
    
         
            -
            - spec/ 
     | 
| 
      
 211 
     | 
    
         
            +
            - spec/rake/yardoc_task_spec.rb
         
     | 
| 
       168 
212 
     | 
    
         
             
            - spec/registry_spec.rb
         
     | 
| 
       169 
     | 
    
         
            -
            - spec/serializers
         
     | 
| 
       170 
213 
     | 
    
         
             
            - spec/serializers/file_system_serializer_spec.rb
         
     | 
| 
       171 
214 
     | 
    
         
             
            - spec/serializers/spec_helper.rb
         
     | 
| 
       172 
215 
     | 
    
         
             
            - spec/spec_helper.rb
         
     | 
| 
       173 
     | 
    
         
            -
            - spec/tags
         
     | 
| 
       174 
     | 
    
         
            -
            -  
     | 
| 
       175 
     | 
    
         
            -
            -  
     | 
| 
       176 
     | 
    
         
            -
            -  
     | 
| 
      
 216 
     | 
    
         
            +
            - spec/tags/default_factory_spec.rb
         
     | 
| 
      
 217 
     | 
    
         
            +
            - spec/tags/default_tag_spec.rb
         
     | 
| 
      
 218 
     | 
    
         
            +
            - spec/tags/overload_tag_spec.rb
         
     | 
| 
      
 219 
     | 
    
         
            +
            - spec/tags/ref_tag_list_spec.rb
         
     | 
| 
       177 
220 
     | 
    
         
             
            - templates/default/attributes/html/header.erb
         
     | 
| 
       178 
     | 
    
         
            -
            - templates/default/attributes/text
         
     | 
| 
       179 
221 
     | 
    
         
             
            - templates/default/attributes/text/header.erb
         
     | 
| 
       180 
     | 
    
         
            -
            - templates/default/class
         
     | 
| 
       181 
     | 
    
         
            -
            - templates/default/class/html
         
     | 
| 
       182 
222 
     | 
    
         
             
            - templates/default/class/html/header.erb
         
     | 
| 
       183 
     | 
    
         
            -
            - templates/default/constants
         
     | 
| 
       184 
     | 
    
         
            -
            - templates/default/constants/html
         
     | 
| 
       185 
223 
     | 
    
         
             
            - templates/default/constants/html/constants.erb
         
     | 
| 
       186 
224 
     | 
    
         
             
            - templates/default/constants/html/header.erb
         
     | 
| 
       187 
225 
     | 
    
         
             
            - templates/default/constants/html/included.erb
         
     | 
| 
       188 
226 
     | 
    
         
             
            - templates/default/constants/html/inherited.erb
         
     | 
| 
       189 
     | 
    
         
            -
            - templates/default/constructor
         
     | 
| 
       190 
     | 
    
         
            -
            - templates/default/constructor/html
         
     | 
| 
       191 
227 
     | 
    
         
             
            - templates/default/constructor/html/header.erb
         
     | 
| 
       192 
     | 
    
         
            -
            - templates/default/deprecated
         
     | 
| 
       193 
     | 
    
         
            -
            - templates/default/deprecated/html
         
     | 
| 
       194 
228 
     | 
    
         
             
            - templates/default/deprecated/html/main.erb
         
     | 
| 
       195 
     | 
    
         
            -
            - templates/default/deprecated/text
         
     | 
| 
       196 
229 
     | 
    
         
             
            - templates/default/deprecated/text/main.erb
         
     | 
| 
       197 
     | 
    
         
            -
            - templates/default/docstring
         
     | 
| 
       198 
     | 
    
         
            -
            - templates/default/docstring/html
         
     | 
| 
       199 
230 
     | 
    
         
             
            - templates/default/docstring/html/main.erb
         
     | 
| 
       200 
     | 
    
         
            -
            - templates/default/docstring/text
         
     | 
| 
       201 
231 
     | 
    
         
             
            - templates/default/docstring/text/main.erb
         
     | 
| 
       202 
     | 
    
         
            -
            - templates/default/fulldoc
         
     | 
| 
       203 
     | 
    
         
            -
            - templates/default/fulldoc/html
         
     | 
| 
      
 232 
     | 
    
         
            +
            - templates/default/fulldoc/html/all_files.erb
         
     | 
| 
       204 
233 
     | 
    
         
             
            - templates/default/fulldoc/html/all_methods.erb
         
     | 
| 
       205 
234 
     | 
    
         
             
            - templates/default/fulldoc/html/all_namespaces.erb
         
     | 
| 
       206 
235 
     | 
    
         
             
            - templates/default/fulldoc/html/app.js
         
     | 
| 
      
 236 
     | 
    
         
            +
            - templates/default/fulldoc/html/file.erb
         
     | 
| 
       207 
237 
     | 
    
         
             
            - templates/default/fulldoc/html/header.erb
         
     | 
| 
       208 
238 
     | 
    
         
             
            - templates/default/fulldoc/html/html_head.erb
         
     | 
| 
       209 
239 
     | 
    
         
             
            - templates/default/fulldoc/html/index.erb
         
     | 
| 
       210 
240 
     | 
    
         
             
            - templates/default/fulldoc/html/jquery.js
         
     | 
| 
       211 
     | 
    
         
            -
            - templates/default/fulldoc/html/readme.erb
         
     | 
| 
       212 
241 
     | 
    
         
             
            - templates/default/fulldoc/html/style.css
         
     | 
| 
       213 
242 
     | 
    
         
             
            - templates/default/fulldoc/html/syntax_highlight.css
         
     | 
| 
       214 
     | 
    
         
            -
            - templates/default/inheritance
         
     | 
| 
       215 
     | 
    
         
            -
            - templates/default/inheritance/html
         
     | 
| 
       216 
243 
     | 
    
         
             
            - templates/default/inheritance/html/header.erb
         
     | 
| 
       217 
     | 
    
         
            -
            - templates/default/inheritance/text
         
     | 
| 
       218 
244 
     | 
    
         
             
            - templates/default/inheritance/text/header.erb
         
     | 
| 
       219 
     | 
    
         
            -
            - templates/default/method
         
     | 
| 
       220 
     | 
    
         
            -
            - templates/default/method/html
         
     | 
| 
       221 
245 
     | 
    
         
             
            - templates/default/method/html/aliases.erb
         
     | 
| 
       222 
246 
     | 
    
         
             
            - templates/default/method/html/header.erb
         
     | 
| 
       223 
247 
     | 
    
         
             
            - templates/default/method/html/title.erb
         
     | 
| 
       224 
     | 
    
         
            -
            - templates/default/ 
     | 
| 
       225 
     | 
    
         
            -
            - templates/default/ 
     | 
| 
      
 248 
     | 
    
         
            +
            - templates/default/method/text/header.erb
         
     | 
| 
      
 249 
     | 
    
         
            +
            - templates/default/method/text/title.erb
         
     | 
| 
       226 
250 
     | 
    
         
             
            - templates/default/methoddetails/html/header.erb
         
     | 
| 
       227 
251 
     | 
    
         
             
            - templates/default/methoddetails/html/method_header.erb
         
     | 
| 
       228 
     | 
    
         
            -
            - templates/default/methodmissing
         
     | 
| 
       229 
     | 
    
         
            -
            - templates/default/methodmissing/html
         
     | 
| 
       230 
252 
     | 
    
         
             
            - templates/default/methodmissing/html/header.erb
         
     | 
| 
       231 
     | 
    
         
            -
            - templates/default/methodsignature
         
     | 
| 
       232 
     | 
    
         
            -
            - templates/default/methodsignature/html
         
     | 
| 
       233 
253 
     | 
    
         
             
            - templates/default/methodsignature/html/main.erb
         
     | 
| 
       234 
     | 
    
         
            -
            - templates/default/methodsignature/text
         
     | 
| 
       235 
254 
     | 
    
         
             
            - templates/default/methodsignature/text/main.erb
         
     | 
| 
       236 
     | 
    
         
            -
            - templates/default/methodsummary
         
     | 
| 
       237 
     | 
    
         
            -
            - templates/default/methodsummary/html
         
     | 
| 
       238 
255 
     | 
    
         
             
            - templates/default/methodsummary/html/header.erb
         
     | 
| 
       239 
256 
     | 
    
         
             
            - templates/default/methodsummary/html/included.erb
         
     | 
| 
       240 
257 
     | 
    
         
             
            - templates/default/methodsummary/html/inherited.erb
         
     | 
| 
       241 
258 
     | 
    
         
             
            - templates/default/methodsummary/html/summary.erb
         
     | 
| 
       242 
     | 
    
         
            -
            - templates/default/methodsummary/text
         
     | 
| 
       243 
259 
     | 
    
         
             
            - templates/default/methodsummary/text/header.erb
         
     | 
| 
       244 
260 
     | 
    
         
             
            - templates/default/methodsummary/text/included.erb
         
     | 
| 
       245 
261 
     | 
    
         
             
            - templates/default/methodsummary/text/inherited.erb
         
     | 
| 
       246 
262 
     | 
    
         
             
            - templates/default/methodsummary/text/summary.erb
         
     | 
| 
       247 
     | 
    
         
            -
            - templates/default/mixins
         
     | 
| 
       248 
     | 
    
         
            -
            - templates/default/mixins/html
         
     | 
| 
       249 
263 
     | 
    
         
             
            - templates/default/mixins/html/header.erb
         
     | 
| 
       250 
     | 
    
         
            -
            - templates/default/module
         
     | 
| 
       251 
     | 
    
         
            -
            - templates/default/module/html
         
     | 
| 
       252 
264 
     | 
    
         
             
            - templates/default/module/html/header.erb
         
     | 
| 
       253 
     | 
    
         
            -
            - templates/default/ 
     | 
| 
       254 
     | 
    
         
            -
            - templates/default/ 
     | 
| 
      
 265 
     | 
    
         
            +
            - templates/default/overloads/html/header.erb
         
     | 
| 
      
 266 
     | 
    
         
            +
            - templates/default/overloads/text/header.erb
         
     | 
| 
       255 
267 
     | 
    
         
             
            - templates/default/quickdoc/html/header.erb
         
     | 
| 
       256 
     | 
    
         
            -
            - templates/default/quickdoc/text
         
     | 
| 
       257 
268 
     | 
    
         
             
            - templates/default/quickdoc/text/header.erb
         
     | 
| 
       258 
     | 
    
         
            -
            - templates/default/ 
     | 
| 
       259 
     | 
    
         
            -
            - templates/default/source/html
         
     | 
| 
      
 269 
     | 
    
         
            +
            - templates/default/root/html/header.erb
         
     | 
| 
       260 
270 
     | 
    
         
             
            - templates/default/source/html/main.erb
         
     | 
| 
       261 
     | 
    
         
            -
            - templates/default/source/text
         
     | 
| 
       262 
271 
     | 
    
         
             
            - templates/default/source/text/main.erb
         
     | 
| 
       263 
     | 
    
         
            -
            - templates/default/tags
         
     | 
| 
       264 
     | 
    
         
            -
            - templates/default/tags/html
         
     | 
| 
      
 272 
     | 
    
         
            +
            - templates/default/tags/html/example.erb
         
     | 
| 
       265 
273 
     | 
    
         
             
            - templates/default/tags/html/header.erb
         
     | 
| 
      
 274 
     | 
    
         
            +
            - templates/default/tags/html/option.erb
         
     | 
| 
      
 275 
     | 
    
         
            +
            - templates/default/tags/html/param.erb
         
     | 
| 
       266 
276 
     | 
    
         
             
            - templates/default/tags/html/see.erb
         
     | 
| 
       267 
277 
     | 
    
         
             
            - templates/default/tags/html/tags.erb
         
     | 
| 
       268 
     | 
    
         
            -
            - templates/default/tags/ 
     | 
| 
      
 278 
     | 
    
         
            +
            - templates/default/tags/html/todo.erb
         
     | 
| 
      
 279 
     | 
    
         
            +
            - templates/default/tags/text/example.erb
         
     | 
| 
       269 
280 
     | 
    
         
             
            - templates/default/tags/text/header.erb
         
     | 
| 
      
 281 
     | 
    
         
            +
            - templates/default/tags/text/option.erb
         
     | 
| 
      
 282 
     | 
    
         
            +
            - templates/default/tags/text/param.erb
         
     | 
| 
       270 
283 
     | 
    
         
             
            - templates/default/tags/text/see.erb
         
     | 
| 
       271 
284 
     | 
    
         
             
            - templates/default/tags/text/tags.erb
         
     | 
| 
       272 
     | 
    
         
            -
            - templates/default/uml
         
     | 
| 
       273 
     | 
    
         
            -
            - templates/default/uml/dot
         
     | 
| 
       274 
285 
     | 
    
         
             
            - templates/default/uml/dot/child.erb
         
     | 
| 
       275 
286 
     | 
    
         
             
            - templates/default/uml/dot/dependencies.erb
         
     | 
| 
       276 
287 
     | 
    
         
             
            - templates/default/uml/dot/header.erb
         
     | 
| 
         @@ -279,41 +290,16 @@ files: 
     | 
|
| 
       279 
290 
     | 
    
         
             
            - templates/default/uml/dot/superclasses.erb
         
     | 
| 
       280 
291 
     | 
    
         
             
            - templates/default/uml/dot/unknown.erb
         
     | 
| 
       281 
292 
     | 
    
         
             
            - templates/default/uml/dot/unknown_child.erb
         
     | 
| 
       282 
     | 
    
         
            -
            - templates/default/visibilitygroup
         
     | 
| 
       283 
     | 
    
         
            -
            - templates/default/visibilitygroup/html
         
     | 
| 
       284 
293 
     | 
    
         
             
            - templates/default/visibilitygroup/html/header.erb
         
     | 
| 
       285 
     | 
    
         
            -
            - templates/fulldoc
         
     | 
| 
       286 
     | 
    
         
            -
            - templates/fulldoc/html
         
     | 
| 
       287 
     | 
    
         
            -
            - templates/fulldoc/html/module
         
     | 
| 
       288 
     | 
    
         
            -
            - templates/fulldoc/html/module/attributes
         
     | 
| 
       289 
     | 
    
         
            -
            - templates/fulldoc/html/module/constants
         
     | 
| 
       290 
     | 
    
         
            -
            - templates/fulldoc/html/module/meth_missing
         
     | 
| 
       291 
     | 
    
         
            -
            - templates/fulldoc/html/module/mixins
         
     | 
| 
       292 
     | 
    
         
            -
            - templates/fulldoc/html/module/visibility
         
     | 
| 
       293 
     | 
    
         
            -
            - templates/javadoc
         
     | 
| 
       294 
     | 
    
         
            -
            - templates/javadoc/attributes
         
     | 
| 
       295 
     | 
    
         
            -
            - templates/javadoc/attributes/html
         
     | 
| 
       296 
294 
     | 
    
         
             
            - templates/javadoc/attributes/html/header.erb
         
     | 
| 
       297 
     | 
    
         
            -
            - templates/javadoc/class
         
     | 
| 
       298 
     | 
    
         
            -
            - templates/javadoc/class/html
         
     | 
| 
       299 
295 
     | 
    
         
             
            - templates/javadoc/class/html/header.erb
         
     | 
| 
       300 
     | 
    
         
            -
            - templates/javadoc/constants
         
     | 
| 
       301 
     | 
    
         
            -
            - templates/javadoc/constants/html
         
     | 
| 
       302 
296 
     | 
    
         
             
            - templates/javadoc/constants/html/constants.erb
         
     | 
| 
       303 
297 
     | 
    
         
             
            - templates/javadoc/constants/html/header.erb
         
     | 
| 
       304 
298 
     | 
    
         
             
            - templates/javadoc/constants/html/included.erb
         
     | 
| 
       305 
299 
     | 
    
         
             
            - templates/javadoc/constants/html/inherited.erb
         
     | 
| 
       306 
     | 
    
         
            -
            - templates/javadoc/constructor
         
     | 
| 
       307 
     | 
    
         
            -
            - templates/javadoc/constructor/html
         
     | 
| 
       308 
300 
     | 
    
         
             
            - templates/javadoc/constructor/html/header.erb
         
     | 
| 
       309 
     | 
    
         
            -
            - templates/javadoc/deprecated
         
     | 
| 
       310 
     | 
    
         
            -
            - templates/javadoc/deprecated/html
         
     | 
| 
       311 
301 
     | 
    
         
             
            - templates/javadoc/deprecated/html/main.erb
         
     | 
| 
       312 
     | 
    
         
            -
            - templates/javadoc/docstring
         
     | 
| 
       313 
     | 
    
         
            -
            - templates/javadoc/docstring/html
         
     | 
| 
       314 
302 
     | 
    
         
             
            - templates/javadoc/docstring/html/main.erb
         
     | 
| 
       315 
     | 
    
         
            -
            - templates/javadoc/fulldoc
         
     | 
| 
       316 
     | 
    
         
            -
            - templates/javadoc/fulldoc/html
         
     | 
| 
       317 
303 
     | 
    
         
             
            - templates/javadoc/fulldoc/html/all_methods.erb
         
     | 
| 
       318 
304 
     | 
    
         
             
            - templates/javadoc/fulldoc/html/all_namespaces.erb
         
     | 
| 
       319 
305 
     | 
    
         
             
            - templates/javadoc/fulldoc/html/app.js
         
     | 
| 
         @@ -324,56 +310,39 @@ files: 
     | 
|
| 
       324 
310 
     | 
    
         
             
            - templates/javadoc/fulldoc/html/readme.erb
         
     | 
| 
       325 
311 
     | 
    
         
             
            - templates/javadoc/fulldoc/html/style.css
         
     | 
| 
       326 
312 
     | 
    
         
             
            - templates/javadoc/fulldoc/html/syntax_highlight.css
         
     | 
| 
       327 
     | 
    
         
            -
            - templates/javadoc/inheritance
         
     | 
| 
       328 
     | 
    
         
            -
            - templates/javadoc/inheritance/html
         
     | 
| 
       329 
313 
     | 
    
         
             
            - templates/javadoc/inheritance/html/header.erb
         
     | 
| 
       330 
     | 
    
         
            -
            - templates/javadoc/method
         
     | 
| 
       331 
     | 
    
         
            -
            - templates/javadoc/method/html
         
     | 
| 
       332 
314 
     | 
    
         
             
            - templates/javadoc/method/html/aliases.erb
         
     | 
| 
       333 
315 
     | 
    
         
             
            - templates/javadoc/method/html/header.erb
         
     | 
| 
       334 
316 
     | 
    
         
             
            - templates/javadoc/method/html/title.erb
         
     | 
| 
       335 
     | 
    
         
            -
            - templates/javadoc/methoddetails
         
     | 
| 
       336 
     | 
    
         
            -
            - templates/javadoc/methoddetails/html
         
     | 
| 
       337 
317 
     | 
    
         
             
            - templates/javadoc/methoddetails/html/header.erb
         
     | 
| 
       338 
318 
     | 
    
         
             
            - templates/javadoc/methoddetails/html/method_header.erb
         
     | 
| 
       339 
     | 
    
         
            -
            - templates/javadoc/methodmissing
         
     | 
| 
       340 
     | 
    
         
            -
            - templates/javadoc/methodmissing/html
         
     | 
| 
       341 
319 
     | 
    
         
             
            - templates/javadoc/methodmissing/html/header.erb
         
     | 
| 
       342 
     | 
    
         
            -
            - templates/javadoc/methodsignature
         
     | 
| 
       343 
     | 
    
         
            -
            - templates/javadoc/methodsignature/html
         
     | 
| 
       344 
320 
     | 
    
         
             
            - templates/javadoc/methodsignature/html/main.erb
         
     | 
| 
       345 
     | 
    
         
            -
            - templates/javadoc/methodsummary
         
     | 
| 
       346 
     | 
    
         
            -
            - templates/javadoc/methodsummary/html
         
     | 
| 
       347 
321 
     | 
    
         
             
            - templates/javadoc/methodsummary/html/header.erb
         
     | 
| 
       348 
322 
     | 
    
         
             
            - templates/javadoc/methodsummary/html/included.erb
         
     | 
| 
       349 
323 
     | 
    
         
             
            - templates/javadoc/methodsummary/html/inherited.erb
         
     | 
| 
       350 
324 
     | 
    
         
             
            - templates/javadoc/methodsummary/html/summary.erb
         
     | 
| 
       351 
     | 
    
         
            -
            - templates/javadoc/mixins
         
     | 
| 
       352 
     | 
    
         
            -
            - templates/javadoc/mixins/html
         
     | 
| 
       353 
325 
     | 
    
         
             
            - templates/javadoc/mixins/html/header.erb
         
     | 
| 
       354 
     | 
    
         
            -
            - templates/javadoc/module
         
     | 
| 
       355 
     | 
    
         
            -
            - templates/javadoc/module/html
         
     | 
| 
       356 
326 
     | 
    
         
             
            - templates/javadoc/module/html/header.erb
         
     | 
| 
       357 
     | 
    
         
            -
            - templates/javadoc/source
         
     | 
| 
       358 
     | 
    
         
            -
            - templates/javadoc/source/html
         
     | 
| 
       359 
327 
     | 
    
         
             
            - templates/javadoc/source/html/main.erb
         
     | 
| 
       360 
     | 
    
         
            -
            - templates/javadoc/tags
         
     | 
| 
       361 
     | 
    
         
            -
            - templates/javadoc/tags/html
         
     | 
| 
       362 
328 
     | 
    
         
             
            - templates/javadoc/tags/html/header.erb
         
     | 
| 
       363 
329 
     | 
    
         
             
            - templates/javadoc/tags/html/see.erb
         
     | 
| 
       364 
330 
     | 
    
         
             
            - templates/javadoc/tags/html/tags.erb
         
     | 
| 
       365 
     | 
    
         
            -
            - templates/javadoc/visibilitygroup
         
     | 
| 
       366 
     | 
    
         
            -
            - templates/javadoc/visibilitygroup/html
         
     | 
| 
       367 
331 
     | 
    
         
             
            - templates/javadoc/visibilitygroup/html/header.erb
         
     | 
| 
       368 
332 
     | 
    
         
             
            - benchmarks/builtins_vs_eval.rb
         
     | 
| 
       369 
333 
     | 
    
         
             
            - benchmarks/erb_vs_erubis.rb
         
     | 
| 
      
 334 
     | 
    
         
            +
            - benchmarks/format_args.rb
         
     | 
| 
       370 
335 
     | 
    
         
             
            - benchmarks/generation.rb
         
     | 
| 
       371 
336 
     | 
    
         
             
            - benchmarks/parsing.rb
         
     | 
| 
      
 337 
     | 
    
         
            +
            - benchmarks/rdoc_vs_yardoc.rb
         
     | 
| 
      
 338 
     | 
    
         
            +
            - benchmarks/ripper_parser.rb
         
     | 
| 
       372 
339 
     | 
    
         
             
            - LICENSE
         
     | 
| 
       373 
     | 
    
         
            -
            - README
         
     | 
| 
      
 340 
     | 
    
         
            +
            - README.markdown
         
     | 
| 
       374 
341 
     | 
    
         
             
            - Rakefile
         
     | 
| 
       375 
342 
     | 
    
         
             
            has_rdoc: false
         
     | 
| 
       376 
343 
     | 
    
         
             
            homepage: http://yard.soen.ca
         
     | 
| 
      
 344 
     | 
    
         
            +
            licenses: []
         
     | 
| 
      
 345 
     | 
    
         
            +
             
     | 
| 
       377 
346 
     | 
    
         
             
            post_install_message: 
         
     | 
| 
       378 
347 
     | 
    
         
             
            rdoc_options: []
         
     | 
| 
       379 
348 
     | 
    
         | 
| 
         @@ -394,9 +363,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement 
     | 
|
| 
       394 
363 
     | 
    
         
             
            requirements: []
         
     | 
| 
       395 
364 
     | 
    
         | 
| 
       396 
365 
     | 
    
         
             
            rubyforge_project: yard
         
     | 
| 
       397 
     | 
    
         
            -
            rubygems_version: 1. 
     | 
| 
      
 366 
     | 
    
         
            +
            rubygems_version: 1.3.2
         
     | 
| 
       398 
367 
     | 
    
         
             
            signing_key: 
         
     | 
| 
       399 
     | 
    
         
            -
            specification_version:  
     | 
| 
      
 368 
     | 
    
         
            +
            specification_version: 3
         
     | 
| 
       400 
369 
     | 
    
         
             
            summary: Documentation tool for consistent and usable documentation in Ruby.
         
     | 
| 
       401 
370 
     | 
    
         
             
            test_files: []
         
     | 
| 
       402 
371 
     | 
    
         |