class PuppetStrings::Yard::Tags::PropertyDirective
Implements a parameter directive (e.g. #@!puppet.type.property) for documenting Puppet
resource types.
Public Class Methods
Source
# File lib/puppet-strings/yard/tags/property_directive.rb, line 22 def self.register! YARD::Tags::Library.define_directive('puppet.type.property', :with_types_and_name, self) end
Registers the directive with YARD
. @return [void]
Public Instance Methods
Source
# File lib/puppet-strings/yard/tags/property_directive.rb, line 9 def call return unless object.respond_to?(:add_property) # Add a property to the resource property = PuppetStrings::Yard::CodeObjects::Type::Property.new(tag.name, tag.text) tag.types&.each do |value| property.add(value) end object.add_property property end
Called to invoke the directive. @return [void]