Class: YARD::Tags::Library
- Inherits:
-
Object
- Object
- YARD::Tags::Library
- Defined in:
- lib/yard/tags/library.rb
Overview
Keeps track of all the registered meta-data tags and directives. Also allows for defining of custom tags and customizing the tag parsing syntax.
Defining Custom Meta-Data Tags
To define a custom tag, use Library.define_tag. You should pass the tag name and the factory method to use when creating the tag. If you do not provide a factory method to use, it will default to DefaultFactory#parse_tag
You can also define tag objects manually by simply implementing a “tagname_tag” method that returns a Tag object, but they will not take advantage of tag factory parsing:
def mytag_tag(text)
Tag.new(:mytag, text)
end
Defining Custom Directives
Directives can be defined by calling the Library.define_directive method, taking the directive name, an optional tag factory parser method (to parse the data in the directive into a temporary Tag object) and a Directive subclass that performs the directive processing. For more information on creating a Directive subclass, see the Directive class documentation.
Similar to tags, Directives can also be defined manually, in this case using the method name “mydirective_directive” and returning a new Directive object:
def mydirective_directive(tag, parser)
MyDirective.new(tag, parser)
end
Namespaced Tags
In YARD 0.8.0+, tags can be namespaced using the ‘.’ character. It is recommended to namespace project specific tags, like @yard.tag_name, so that tags do not collide with other plugins or new built-in tags.
Adding/Changing the Tag Syntax
If you have specialized tag parsing needs you can substitute the #factory object with your own by setting Library.default_factory to a new class with its own parsing methods before running YARD. This is useful if you want to change the syntax of existing tags (@see, @since, etc.)
Class Attribute Summary collapse
-
.default_factory ⇒ Object
Replace the factory object responsible for parsing tags by setting this to an object (or class) that responds to
parse_TAGNAME
methods whereTAGNAME
is the name of the tag. -
.instance ⇒ Library
The main Library instance object.
-
.labels ⇒ SymbolHash{Symbol=>String}
readonly
The map of tag names and their respective display labels.
-
.transitive_tags ⇒ Array<Symbol>
Sets the list of tags that should apply to any children inside the namespace they are defined in.
-
.visible_tags ⇒ Array<Symbol>
Sets the list of tags to display when rendering templates.
Instance Attribute Summary collapse
-
#factory ⇒ Object
A factory class to handle parsing of tags, defaults to Library.default_factory.
Class Method Summary collapse
- .define_directive(tag, tag_meth = nil, directive_class) ⇒ Object
-
.define_tag(label, tag, meth = nil) ⇒ Object
Convenience method to define a new tag using one of Tag‘s factory methods, or the regular DefaultFactory#parse_tag factory method if none is supplied.
- .directive_method_name(tag_name) ⇒ Object
-
.factory_method_for(tag) ⇒ Symbol, ...
Returns the factory method used to parse the tag text for a specific tag.
-
.factory_method_for_directive(directive) ⇒ Symbol, ...
Returns the factory method used to parse the tag text for a specific directive.
-
.sorted_labels ⇒ Array<Symbol>, String
Sorts the labels lexically by their label name, often used when displaying the tags.
- .tag_method_name(tag_name) ⇒ Object
Instance Method Summary collapse
-
#directive_create(tag_name, tag_buf, parser) ⇒ Directive
Creates a new directive with tag information and a docstring parser object.
-
#has_directive?(tag_name) ⇒ Boolean
Whether a directive by the given name is registered in the library.
-
#has_tag?(tag_name) ⇒ Boolean
Whether a tag by the given name is registered in the library.
-
#initialize(factory = Library.default_factory) ⇒ Library
constructor
A new instance of Library.
-
#tag_create(tag_name, tag_buf) ⇒ Tag
Creates a new Tag object with a given tag name and data.
Constructor Details
#initialize(factory = Library.default_factory) ⇒ Library
Returns a new instance of Library.
260 261 262 |
# File 'lib/yard/tags/library.rb', line 260 def initialize(factory = Library.default_factory) self.factory = factory end |
Class Attribute Details
.default_factory ⇒ Object
Replace the factory object responsible for parsing tags by setting this to an object (or class) that responds to parse_TAGNAME
methods where TAGNAME
is the name of the tag.
You should set this value before performing any source parsing with YARD, otherwise your factory class will not be used.
84 85 86 |
# File 'lib/yard/tags/library.rb', line 84 def default_factory @default_factory ||= DefaultFactory.new end |
.instance ⇒ Library
Returns the main Library instance object.
66 67 68 |
# File 'lib/yard/tags/library.rb', line 66 def instance @instance ||= new end |
.labels ⇒ SymbolHash{Symbol=>String} (readonly)
Returns the map of tag names and their respective display labels.
62 63 64 |
# File 'lib/yard/tags/library.rb', line 62 def labels @labels end |
.transitive_tags ⇒ Array<Symbol>
Sets the list of tags that should apply to any children inside the namespace they are defined in. For instance, a “@since” tag should apply to all methods inside a module it is defined in. Transitive tags can be overridden by directly defining a tag on the child object.
137 138 139 |
# File 'lib/yard/tags/library.rb', line 137 def @transitive_tags end |
.visible_tags ⇒ Array<Symbol>
Sets the list of tags to display when rendering templates. The order of tags in the list is also significant, as it represents the order that tags are displayed in templates.
You can use the Array#place to insert new tags to be displayed in the templates at specific positions:
Library..place(:mytag).before(:return)
128 129 130 |
# File 'lib/yard/tags/library.rb', line 128 def @visible_tags end |
Instance Attribute Details
#factory ⇒ Object
A factory class to handle parsing of tags, defaults to default_factory
258 259 260 |
# File 'lib/yard/tags/library.rb', line 258 def factory @factory end |
Class Method Details
.define_directive(tag, tag_meth = nil, directive_class) ⇒ Object
196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 |
# File 'lib/yard/tags/library.rb', line 196 def define_directive(tag, tag_meth = nil, directive_class = nil) directive_meth = directive_method_name(tag) if directive_class.nil? tag_meth, directive_class = nil, tag_meth end class_eval <<-eof, __FILE__, __LINE__ def #{directive_meth}(tag, parser) directive_call(tag, parser) end eof @factory_methods ||= SymbolHash.new(false) @factory_methods.update(tag => tag_meth) @directive_factory_classes ||= SymbolHash.new(false) @directive_factory_classes.update(tag => directive_class) tag end |
.define_tag(label, tag, meth = nil) ⇒ Object
Convenience method to define a new tag using one of Tag‘s factory methods, or the regular DefaultFactory#parse_tag factory method if none is supplied.
158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 |
# File 'lib/yard/tags/library.rb', line 158 def define_tag(label, tag, meth = nil) tag_meth = tag_method_name(tag) if meth.is_a?(Class) && Tag > meth class_eval <<-eof, __FILE__, __LINE__ def #{tag_meth}(text) #{meth}.new(#{tag.inspect}, text) end eof else class_eval <<-eof, __FILE__, __LINE__ def #{tag_meth}(text) send_to_factory(#{tag.inspect}, #{meth.inspect}, text) end eof end @labels ||= SymbolHash.new(false) @labels.update(tag => label) @factory_methods ||= SymbolHash.new(false) @factory_methods.update(tag => meth) tag end |
.directive_method_name(tag_name) ⇒ Object
219 220 221 |
# File 'lib/yard/tags/library.rb', line 219 def directive_method_name(tag_name) tag_or_directive_method_name(tag_name, 'directive') end |
.factory_method_for(tag) ⇒ Symbol, ...
Returns the factory method used to parse the tag text for a specific tag
100 101 102 |
# File 'lib/yard/tags/library.rb', line 100 def factory_method_for(tag) @factory_methods[tag] end |
.factory_method_for_directive(directive) ⇒ Symbol, ...
Returns the factory method used to parse the tag text for a specific directive
113 114 115 |
# File 'lib/yard/tags/library.rb', line 113 def factory_method_for_directive(directive) @directive_factory_classes[directive] end |
.sorted_labels ⇒ Array<Symbol>, String
Sorts the labels lexically by their label name, often used when displaying the tags.
143 144 145 |
# File 'lib/yard/tags/library.rb', line 143 def sorted_labels labels.sort_by {|a| a.last.downcase } end |
.tag_method_name(tag_name) ⇒ Object
215 216 217 |
# File 'lib/yard/tags/library.rb', line 215 def tag_method_name(tag_name) tag_or_directive_method_name(tag_name) end |
Instance Method Details
#directive_create(tag_name, tag_buf, parser) ⇒ Directive
Creates a new directive with tag information and a docstring parser object.
290 291 292 293 294 295 |
# File 'lib/yard/tags/library.rb', line 290 def directive_create(tag_name, tag_buf, parser) meth = self.class.factory_method_for(tag_name) tag = send_to_factory(tag_name, meth, tag_buf) meth = self.class.directive_method_name(tag_name) send(meth, tag, parser) end |
#has_directive?(tag_name) ⇒ Boolean
Returns whether a directive by the given name is registered in the library.
280 281 282 |
# File 'lib/yard/tags/library.rb', line 280 def has_directive?(tag_name) tag_name && respond_to?(self.class.directive_method_name(tag_name)) end |
#has_tag?(tag_name) ⇒ Boolean
Returns whether a tag by the given name is registered in the library.
267 268 269 |
# File 'lib/yard/tags/library.rb', line 267 def has_tag?(tag_name) tag_name && respond_to?(self.class.tag_method_name(tag_name)) end |