Class: YARD::Tags::EndGroupDirective
- Defined in:
- lib/yard/tags/directives.rb
Overview
Ends a group listing definition. Group definition automatically end when class or module blocks are closed, and defining a new group overrides the last group definition, but occasionally you need to end the current group to return to the default listing. Use tag:!group to begin a group listing.
Instance Attribute Summary
Attributes inherited from Directive
#expanded_text, #handler, #object, #tag
Parser callbacks collapse
Methods inherited from Directive
Constructor Details
This class inherits a constructor from YARD::Tags::Directive
Instance Method Details
#call ⇒ Object
106 107 108 109 |
# File 'lib/yard/tags/directives.rb', line 106 def call return unless handler handler.extra_state.group = nil end |